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