UNPKG

cssrecipes-defaults

Version:

Just a few handy default styles for your `<html>` pages

13 lines (11 loc) 180 B
/* * box model like it should be * * http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */ html {box-sizing: border-box} *, *:before, *:after { box-sizing: inherit; }