/ Published in: CSS
Forces padding to not be added to overall box dimensions but instead subtracted - good for frameworks. For example, a container 960px with a 20px border and a 20px padding added still remains 960px allowing me to enjoy my life free of pesky maths.
Old skool goodness!
Old skool goodness!
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }