On 3/18/10 11:03 AM, Brian M. Curran wrote:
> Hi All,
> Does anyone have a rule of thumb for styling the font-size: of h tags? For 
> example: h1:200%; ...180%,160%,140%,120%... h6:100%; .
>

Most of my browsers apply these sizes and margins:

h1 {
   font-size: 2em;
   margin: .67em 0;
}

h2 {
   font-size: 1.5em;
   margin: .83em 0;
}

h3 {
   font-size: 1.17em;
   margin: 1em 0;
}

h4 {
   margin: 1.33em 0;
}

h5 {
   font-size: 0.83em;
   margin: 1.67em 0;
}

h6 {
   font-size: 0.67em;
   margin: 2.33em 0;
}

FWIW - I follow David's idea, avoiding font-size less than 100%. You can 
use font-style and/or font-variant as alternative ways of distinguishing 
h4 - h6. YMMV.

Cordially,
David
--

______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to