Possible Duplicate:
Best css reset
Does anybody know of any super reset for CSS, which covers everything?
Possible Duplicate:
Best css reset
Does anybody know of any super reset for CSS, which covers everything?
I have always used the YUI resets. They differ from others as they reset everything, so you effectively start from scratch. There is also the added trust that it is Yahoo and their YUI framework backing it.
There is a nice article here about the YUI Reset vs. Eric Meyer's Reset: http://www.puidokas.com/reset-styles/
Keep it simple. I go with something like this:
* {
margin: 0;
padding: 0;
border: 0;
text-decoration: none;
}