Looking at YUI 2: Reset CSS they set margin:0 and padding:0 on multiple elements. I don’t care about IE6 or IE7 on my pages. Will I still need to set margin:0 for each element anyway?
- div (no)
- ol (yes)
- ul (yes)
- li (no)
- form (only IE6,IE7)
- input (no)
- textarea (no)
Will I still need to set padding:0 for each element anyway?
- body (no)
- div (no)
- ul (yes)
- ol (yes)
- li (no)
- form (no)
- textarea (yes)
- p (no)
Will still I need to set border:0 for image?
A: Only for linked images
Anything else you recomend?
You can look up IE’s built-in style sheets on this website: http://www.iecss.com/
It has links to styles of Firefox, WebKit and Opera. You could cross-reference these to make a decision.