Simple CSS Reset Rules
This is a set of rules that:
- Set the
box-sizing
default toborder-box
, which make widths withpadding
&margin
values easier to work with - Remove any browser-specified
body
margin
*,
*:before,
*:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
}
body {
margin: 0;
}