up vote 0 down vote favorite
share [g+] share [fb]

In the following code, both the INPUT and TEXTAREA elements render wider than they should. How can I limit them to 100% of the usable area within the div?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <style>
       .mywidth{ width:100%; }
    </style>
</head>
<body>
    <div style="border: 3px solid green; width: 100px;">
    	<input class="mywidth" ><br />
    	<textarea class="mywidth"></textarea><br />
    	<div style="background-color: yellow;" class="mywidth">test</div>
     </div>
</body>
</html>

Note: If I remove the DOCTYPE, it renders as expected, with the INPUT, TEXTAREA and inner DIV all the same width and not going outside the containing DIV.

Update: Not withstanding the default borders on those elements, it still appears to render incorrectly in IE7.

link|improve this question

feedback

7 Answers

up vote 4 down vote accepted

Inputs and textareas both have borders by default

<style>
   .mywidth{ 
     width:100%;
     border:0;
    } 
</style>

will render all the elements within your container.

Update

IE also has left and right padding on each element and the following css fits all the elements within the container in FF3, FF2, Safari 3, IE6 and IE7.

<style>
   .mywidth{ width:100%; border:0; padding-left:0; padding-right:0; }
</style>

However, don't forget that you will probably need a border, and perhaps the padding too, in order to make the fields appear to users as normal. If you set that border and padding yourself then you will know what the difference is, across browsers, between the width of the container and the width you will need to give to the input/textarea elements.

link|improve this answer
Awesome, Phil. I never knew this. – Gabe Hollombe Nov 3 '08 at 18:21
Have you tried it? Check IE7. It still bites into the green border on the containing div. – Larsenal Nov 3 '08 at 18:27
Apologies, I'm on a Mac! I'll see what I can do in IE7. – philnash Nov 3 '08 at 19:42
feedback

I had this same problem. I used the box-sizing property mentioned here:

How can I make a TextArea 100% width without overflowing when padding is present in CSS?

Here's what it looked like for me:

<style>
   .mywidth{ 
     width:100%;
     -moz-box-sizing: border-box;
     -ms-box-sizing: border-box;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
    } 
</style>
link|improve this answer
Perfect! Thanks!!! – Brandon Boone Sep 27 '10 at 1:17
This should've been chosen as the correct answer, thanks! – Leandro López Jan 20 '11 at 2:05
This won't work in IE7 or less, as older browsers don't support box-sizing. Also, you should be sure to include -ms-box-sizing and always list the actual CSS3 property (box-sizing) last, so once browsers implement the real CSS property it will overwrite their vendor-specific version. – RussellUresti Mar 30 '11 at 16:42
@RussellUresti: good call, I've updated my answer based on your comment – Bryan Mar 31 '11 at 15:27
feedback

@Phil has the answer, above.

Incidentally, using Firebug does, indeed, show the default borders on the textarea and input elements. So, using Firebug might have helped.

link|improve this answer
It does look fine in FF, but it's still rendering incorrectly in IE7. – Larsenal Nov 3 '08 at 18:32
feedback

You could try using this DOCTYPE instead

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
link|improve this answer
Doesn't appear to fix it. – Larsenal Nov 3 '08 at 18:20
1  
Not having a DOCTYPE will force the browser into quirks mode, using the old, incorrect box model which doesn't coun't the border as part of the width. – philnash Nov 3 '08 at 18:23
Or... <!DOCTYPE html> :P – Delan Azabani Jul 22 '10 at 13:26
feedback

Add "padding-right:3px;" to the div so it reads as:

<div style="border: 3px solid green;padding-right:3px; width: 100px;">

Because you have added a border to the div that also counts as internal space of the div.

The reason it works without the doc declaration is that the browser does not render the page as transitional XHTML but plain old html which has a different rendering method for div's etc.

link|improve this answer
feedback

nice, just tell the with with px and thats all

link|improve this answer
feedback

xhtml strict code seems to do that with forms. i just make the inputs and textareas stretch at 99% and that seems to work. give that a try.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.