Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to give my div and textarea some padding. When I do this, it increses the size of the element, instead of shrinking the content area inside of it. Is there any way to achieve what I am trying to do?

Thanks for your help!

share|improve this question
What browser(s) are you using to test? – Peter Taylor Jan 22 '11 at 9:03

3 Answers

According to w3c specs, the rendered width of a box type element is equal to the sum of its width, left/right margin and left/right padding. If your box has a width of '100%' and also has margin, border and padding, they will affect (increase) the width occupied by the object.

Edit: If your textarea needs to be 100% wide, assign values to width, margin-left/right, border-left/right and padding-left/right in such a way that their sum equals 100%.

share|improve this answer

It depends on the browser and it's implementation of the box model. What you are experiencing is the correct behavior.

IE traditionally got it wrong: http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug

share|improve this answer
3  
"Wrong" as in different from what W3C came up with, but right as far as what's more intuitive / easier to work. – pbz Mar 15 '11 at 4:34
1  
@pbz: You are most probably right. But specs are to be followed to avoid chaos, which is exactly what IE caused. – cherouvim Mar 15 '11 at 18:00

This was a mess on W3C part and various browsers only added to this complexity with their own versions of box models. Personally, instead of thinking which browser or CSS setting will do the trick I just wrap the box' content in yet another DIV statement and use margins on that DIV, instead of using padding, like this:

<div id="container" style="width: 300px; border: 10px solid red;">
   <div id="content" style="width: 250px; margin: 25px;">
      Some content
   </div>
</div>

Although this only works for fixed size containers

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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