Box-sizing CSS code snippet

This code changes the box model default of the CSS to border-box.

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