It helps (crossbrowser results) to include everything in the body tag first.
body {
font-size: whatever;
line-height: whatever;
letter-spacing: whatever;
etc
etc
etc
}
Also, for paragraph & header text, margin, padding
h1 {font-size: whatever; margin:whatever; padding: whatever;}
h2 {font-size: whatever; margin:whatever; padding: whatever;}
h3 {font-size: whatever; margin:whatever; padding: whatever;}
h4 {font-size: whatever; margin:whatever; padding: whatever;}
p {margin:whatever; padding: whatever;}
You'll get more predictable crossbrowser results getting in that habit.
|