I have the following HTML snippet being rendered.

<div style="display: block;" id="rulesformitem" class="formitem">
    <label for="rules" id="ruleslabel">Rules:</label>
    <textarea cols="2" rows="10" id="rules"/>
</div>

This is my CSS:

textarea
{
    border:1px solid #999999;
    width:100%;
    margin:5px 0;
    padding:3px;
}

Is the problem is that the text area ends up being 8px wider (2px for border + 6px for padding) than the parent. Is there a way to continue to use border and padding but constrain the total size of the textarea to the width of the parent?

link|improve this question

2  
You should change the answer to beatgnu's response. It is perfect. – Nate Bird Jan 12 at 20:09
Perfect, but not practical for a couple more years (thanks to Internet Explorer) :( – Nik Feb 8 at 3:05
feedback

9 Answers

up vote 122 down vote accepted

Why not? Forget the hacks and just do it with CSS?

One I use frequently:

.boxsizingBorder {
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
}
link|improve this answer
Wow, that's pretty nifty, thanks. – Noah McIlraith Dec 8 '10 at 8:40
3  
May also want to add "-ms-box-sizing" for I.E. 8, according to erik.eae.net/archives/2008/03/10/21.48.10 – Triynko Apr 1 '11 at 18:28
This solution worked flawlessly! – Venkat D. Aug 25 '11 at 22:46
2  
Dude sweet! I had no idea this was even possible. – voetsjoeba Nov 21 '11 at 19:48
2  
I can't believe this worked. But it did. CSS is never this easy. :-) – Nate Bird Jan 12 at 19:58
show 2 more comments
feedback

The answer to many CSS formatting problems seems to be "add another <div>!"

So, in that spirit, have you tried adding a wrapper div to which the border/padding are applied and then putting the 100% width textarea inside of that? Something like (untested):

textarea
{
    width:100%;
}
.textwrapper
{
    border:1px solid #999999;
    margin:5px 0;
    padding:3px;
}

<div style="display: block;" id="rulesformitem" class="formitem">
    <label for="rules" id="ruleslabel">Rules:</label>
    <div class="textwrapper"><textarea cols="2" rows="10" id="rules"/></div>
</div>
link|improve this answer
1  
I ended up moving away from using % widths. I believe your approach would work just as well though. Thanks! – spoon16 Nov 7 '08 at 22:51
5  
Don't forget to add "." to the textwrapper class. – Chris Porter Mar 24 '10 at 16:46
2  
@Chris: Thanks and fixed. I'm mildly surprised that it took almost a year and a half for someone to catch that... – Dave Sherohman Mar 25 '10 at 8:28
1  
How will the textarea's scrollbars look in this case? – Daniel LeCheminant Apr 22 '10 at 15:26
1  
In chrome, when you focus textarea element it's gets hightlighted automatically and if you create padding for div wrapper, this padding will be visible and two borders will be visible because of that. One from hightlighting and another from .textwrapper border:1px solid #999999; – Beck Mar 4 '11 at 10:13
show 1 more comment
feedback


let's consider the final output rendered to the user of what we want to achieve: a padded textarea with both a border and a padding, which characteristics are that being clicked they pass the focus to our textarea, and the advantage of an automatic 100% width typical of block elements.

The best approach in my opinion is to use low level solutions as far as possible, to reach the maximum browsers support. In this case the only HTML could work fine, avoiding the use of Javascript (which anyhow we all love).

The LABEL tag comes in our help because has such behaviour and is allowed to contain the input elements it must address to. Its default style is the one of inline elements, so, giving to the label a block display style we can avail ourselves of the automatic 100% width including padding and borders, while the inner textarea has no border, no padding and a 100% width.

Taking a look at the W3C specifics other advantages we may notice are:

  • no "for" attribute is needed: when a LABEL tag contains the target input, it automatically focuses the child input when clicked;
  • if an external label for the textarea has already been designed, no conflicts occur, since a given input may have one or more labels.

See W3C specifics for more detailed information: http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1

Simple example:


<html>
<head>
<style type="text/css">
.container { width: 400px; border: 3px solid #f7c; }
.textareaContainer {
    display: block;
    border: 3px solid #38c;
    padding: 10px;
}
textarea { width: 100%; margin: 0; padding: 0; border-width: 0; }
</style>
</head>

<body> <div class="container"> I am the container <label class="textareaContainer"> <textarea name="text">I am the padded textarea with a styled border...</textarea> </label> </div> </body> </html>

The padding and border of the .textareaContainer elements are the ones we want to give to the textarea. Try editing them to style it as you want. I gave large and visible padding and borders to the .textareaContainer element to let you see their behaviour when clicked.

link|improve this answer
Not sure what cross-browser gotchas lurk here, but I liked the approach. +1 – HRJ Oct 27 '10 at 17:57
feedback

If you're not too bothered about the width of the padding, this solution will actually keep the padding in percentages too..

textarea
{
    border:1px solid #999999;
    width:98%;
    margin:5px 0;
    padding:1%;
}

Not perfect, but you'll get some padding and the width adds up to 100% so its all good

link|improve this answer
feedback

No, you cannot do that with CSS. That is the reason Microsoft initially introduced another, and maybe more practical box model. The box model that eventually won, makes it inpractical to mix percentages and units.

I don't think it is OK with you to express padding and border widths in percentage of the parent too.

link|improve this answer
feedback

You can make use of the box-sizing property, it's supported by all the main standard-compliant browsers and IE8+. You still will need a workaround for IE7 though.

http://www.quirksmode.org/css/box.html

link|improve this answer
This seems like the best solution for modern browsers. – David Johnstone Nov 3 '10 at 11:19
feedback

Btw there is good article for this by Jeffrey Way on tutsplus here:

http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-did-internet-explorer-get-the-box-model-right/

Maybe it will help someone ;)

link|improve this answer
feedback

I came across another solution here that is so simple: add padding-right to the textarea's container. This keeps the margin, border, and padding on the textarea, which avoids the problem that Beck pointed out about the focus highlight that chrome and safari put around the textarea.

The container's padding-right should be the sum of the effective margin, border, and padding on both sides of the textarea, plus any padding you may otherwise want for the container. So, for the case in the original question:

textarea
{
    border:1px solid #999999;
    width:100%;
    margin:5px 0;
    padding:3px;
}
.textareacontainer
{
    padding-right: 8px; /* 1 + 3 + 3 + 1 */
}

<div class="textareacontainer">
    <textarea/>
</div>
link|improve this answer
feedback

box-sizing: border-box;

works for IE8/9 and Chrome/Latest, but, doesn't seem to work on FF12.0 and I am using the latest version right now, 05/08/2012.

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.