Skip to content

CSS code snippet – How to make textbox shorter in html?

just use

textarea {
    width: 200px;
}

or 

input[type="text"] {
    width: 200px;
}
See also  Python code snippet - How to ask manager if he wants any changes in the given task?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.