Is the CSS star selector considered harmful (and why)?

Viewed 23487

Does the star selector in CSS affect page rendering performance?

Are there any caveats using it?

* {
  margin:0;
  padding:0;
}
4 Answers
Related