How do I set the size of an HTML text box?

Css

Css Problem Overview


How do I set the size of an HTML text box?

Css Solutions


Solution 1 - Css

Just use:

textarea {
    width: 200px;
}

or

input[type="text"] {
    width: 200px;
}

Depending on what you mean by 'textbox'.

Solution 2 - Css

Your markup:

<input type="text" class="resizedTextbox" />

The CSS:

.resizedTextbox {width: 100px; height: 20px}

Keep in mind that text box size is a "victim" of the W3C box model. What I mean by victim is that the height and width of a text box is the sum of the height/width properties assigned above, in addition to the padding height/width, and the border width. For this reason, your text boxes will be slightly different sizes in different browsers depending on the default padding in different browsers. Although different browsers tend to define different padding to text boxes, most reset style sheets don't tend to include <input /> tags in their reset sheets, so this is something to keep in mind.

You can standardize this by defining your own padding. Here is your CSS with specified padding, so the text box looks the same in all browsers:

.resizedTextbox {width: 100px; height: 20px; padding: 1px}

I added 1 pixel padding because some browsers tend to make the text box look too crammed if the padding is 0px. Depending on your design, you may want to add even more padding, but it is highly recommend you define the padding yourself, otherwise you'll be leaving it up to different browsers to decide for themselves. For even more consistency across browsers, you should also define the border yourself.

Solution 3 - Css

input[type="text"]
{
    width:200px
}

Solution 4 - Css

Your textbox code:

<input type="text" class="textboxclass" />

Your CSS code:

input[type="text"] {
height: 10px;
width: 80px;
}

or

.textboxclass {
height: 10px;
width: 80px;
}

So, first you select your element with attributes (look at first example) or classes(look last example). Later, you assign height and width values to your element.

Solution 5 - Css

This works for me in IE 10 and FF 23

<input type="text" size="100" />

Solution 6 - Css

If you don't want to use the class method you can use parent-child method to make changes in the text box.

For eg. I've made a form in my form div.

HTML Code:

<div class="form">
	<textarea name="message" rows="10" cols="30" >Describe your project in detail.</textarea>
</div>

Now CSS code will be like:

.form textarea {
	height: 220px;
	width: 342px;
}

Problem solved.

Solution 7 - Css

Lookout! The width attribute is clipped by the max-width attribute. So I used....

    <form method="post" style="width:1200px">
    <h4 style="width:1200px">URI <input type="text" name="srcURI" id="srcURI" value="@m.SrcURI" style="width:600px;max-width:600px"/></h4>

Solution 8 - Css

You can make the dependent input width versus container width.

.container {
   width: 360px;
}

.container input {
   width: 100%;
}

Solution 9 - Css

Elements can be sized with the height and width attributes.

Solution 10 - Css

Try:

input[type="text"]{
padding:10px 0;}

This is way it remains independent of what textsize has been set for the textbox. You are increasing the height using padding instead

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser225269View Question on Stackoverflow
Solution 1 - CssRownoView Answer on Stackoverflow
Solution 2 - CssDan HerbertView Answer on Stackoverflow
Solution 3 - CsstcaoView Answer on Stackoverflow
Solution 4 - CssLightsaberView Answer on Stackoverflow
Solution 5 - Cssjoym8View Answer on Stackoverflow
Solution 6 - CssJohnny VikrantView Answer on Stackoverflow
Solution 7 - CssR KeeneView Answer on Stackoverflow
Solution 8 - CssIlya DegtyarenkoView Answer on Stackoverflow
Solution 9 - CssMatchuView Answer on Stackoverflow
Solution 10 - CssErol BalciView Answer on Stackoverflow