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 !
January 14, 2013 at 4:58 am
#121015
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.