vote up 0 vote down star

in "CSS: The missing manual" the author says that font-size: medium (or other size keywords) sets the font relative to the browser's base font size.

But what I'm seeing in FF2 and IE6 is that it sets the font size to what I specified in the .CSS HTML or BODY style (which is much preferred).

If it works the latter way, this is very handy if you have nested styles and you know you want some text to be the body font-size (i.e., "normal sized text").

flag

65% accept rate

4 Answers

vote up 2 vote down check

From the CSS 2.1 specification:

The 'medium' value is the user's preferred font size and is used as the reference middle value.

If a browser doesn't do this, then the browser is buggy.

link|flag
vote up 2 vote down

It will be based upon the parent element, so as to respect the cascade. If it is helpful, I always do my font sizes this way:

body {
   font: normal 100% "Arial","Helvetica",sans-serif;
}
p, li, td {
   font-size: .85em;
}
li p, td p {
   font-size: 1em;
}

Go 100% on the body, then use em for everything else. I never use "smaller" or "medium" or anything like that. I have more control this way.

Edit:

Please see Jim's comment about "medium" being an absolute font size. Good to note.

link|flag
Size keywords are absolute. They don't work in the same way as the relative sizes you use. – Jim Sep 18 '08 at 16:57
vote up 0 vote down

Font Size Keywords (xx-small, x-small, small, medium, etc..) are based on the users default font size which is medium. It can also be used in the term of changing the size of a child element in relation to the parent element.

link|flag
vote up -1 vote down

I think if you set a default size to a element like a container or the body, then any relative font-sizes in the children are based on the parent elements. Only if you don't specify a font-size anywhere does it just default to the browser (which they all have different sizes at that).

link|flag
'medium' is an absolute font size, not a relative one. – Jim Sep 18 '08 at 16:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.