Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 624 Bytes

css3-box-sizing.rst

File metadata and controls

34 lines (23 loc) · 624 Bytes

CSS3 box-sizing

.. seealso:: reference:

        | http://code.tutsplus.com/tutorials/quick-tip-did-internet-explorer-get-the-box-model-right--net-12328
        | https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing

example:

textarea {
width: 100%;
padding: 10px;
}

THIS MAKE THE TRICK:
.borderbox {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
<div style="height: 100px; width: 100px;">
<textarea class="borderbox"></textarea>
</div>