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!
|
|
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%. |
||||
|
|
|
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 |
|||
|
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:
Although this only works for fixed size containers |
||||
|
|