At the moment I am just resetting the styles I need at the top of my style-sheet, like:
html, body, div, fieldset, form, h1, h2, h3, h4, p, ul, li {
margin: 0;
padding: 0;
}
However, I have seen a lot of times that people use:
* {
margin: 0;
padding: 0;
}
That does seem to make things easier, but somewhere else (don´t remember where...) I read that using the * selector seriously affects performance.
Is that true, does a long list of selectors (the example just has a few selectors, it could be more) perform significantly better than the * selector and are there perhaps other disadvantages to the * selector?