Html, body reset

Is it a good idea, or a bad idea, to reset the following…

html, body{
  margin: 0;
  padding: 0;
}

I’d say good since different browsers have different default values set for those and otherwise you’ll get inconsistent results

What about going nuclear and resetting all elements?

I think the syntax is…

*{
   margin: 0;
   padding: 0;
}

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.