CodeHQ

Border-box

Use this to make an element include padding in to it’s width/height.

@media screen {
  *, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; } }