Usually, in order for the style to be the same for each browser, you see that on some sites there is something like this:
html, body, div, span, object, ... {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
Is there a reason they are not just using:
*, html { ... }
source
share