/ Published in: CSS
URL: http://css-tricks.com/box-sizing/
This code modifies the default Box Sizing model from its regular style, "Content Box," to the much more sensible "Border Box," which does not include padding on top of width/height values.
Expand |
Embed | Plain Text
*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
You need to login to post a comment.
