After using a css reset, all my heading tags are reset (ofcourse). What is the best way to style them like normal.
Surely there is better way then this?
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.3em; }
h4 { font-size: 1em; }
h5 { font-size: 0.8em; }
h6 { font-size: 0.7em; }
* {font-size:1em}
? Things like that don't actually solve any problems, you know. To answer your question: yes, there is a better way. Don't use the css reset. But if you absolutely must, then what you have there in your question is not enough; you'll also need to restore the font-weight and the top and bottom margins for each of the headers. – Suellen