Many browsers have native borders for input controls which look way better than borders set with CSS. Some browsers have 1px for native borders, some 2px, so the border thickness is generally unknown beforehand. Same with padding. Now I want the width of a textarea to be 100% of the container element including these native borders and padding.
Here is the HTML
<div class="container">
<div class="wrapper">
<textarea rows="10" cols="42">Some text</textarea>
</div>
</div>
And some CSS
.container {
width: 400px;
}
textarea {
width: 100%;
}
Obviously, the textarea will overflow the container on the right side twice the px thickness of native borders plus twice the native padding. How do I fix this overflow?
Extra markup is OK if it is need, browser specific CSS stylesheets are also OK, unless they assume some specific border thickness from that browser.
Is it possible to get that 100% width with CSS in standards mode in all major browsers? It should would work in ancient ones such as IE6 and IE7. Preferably without JavaScript (including expressions).