Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other Tools you use when its time to start a new project ! Re: Tools you use when its time to start a new project !

#121015
Kitty Giraudel
Participant

There are 3 different things when it comes to reset CSS styles:
* Barbarian reset a.k.a * { padding:0; margin:0; }. Works great, but not recommanded since it resets everything including things you don’t want to be reseted.
* Eric Meyer’s CSS reset (http://meyerweb.com/eric/tools/css/reset/). Works great since it resets only what needs to be reseted.
* Nicolas Gallagher’s CSS normalize (http://necolas.github.com/normalize.css/). Doesn’t reset anything, instead it normalizes browser inconsistancies. Probably the best choice.