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 use the following HTML:

<textarea></textarea>

And the following CSS:

textarea{
display: block;
margin: 0px;
padding: 0px;
border: 0px;
outline: 0px;
width: 100px;
height: 100px;
resize: none;
}

Firefox, Safari give me just what I expected a textarea of 100 x 100, but Chrome 111 x 111 (even the Chrome inspector displays 100x100).

Here is an screenshot I took: http://afbeelding.im/GF5f3d

share|improve this question
Are you sure there's nothing else affecting your box? – Yisela May 10 '12 at 1:48

1 Answer

up vote 1 down vote accepted

Confused over padding and margin stuff? box-sizing is here!

box-sizing can make sure the element's size is the exact same size of what you set, no matter what padding or margin, it is still the same.

box-sizing: border-box;  //This will make your life much easier.

For more: http://www.css3.info/preview/box-sizing/

Demo: http://jsfiddle.net/DerekL/ZmXKC/

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.