Hello, I'm testing keywords for font-size properties, as in this example:
--------------------------------------------------- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title></title> <style type="text/css"> body { font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; } .xx-large { font-size: xx-large; } .x-large { font-size: x-large; } .large { font-size: large; } .medium { font-size: medium; } .small { font-size: small; } .x-small { font-size: x-small; } .xx-small { font-size: xx-small; } </style> </head> <body> <p class="xx-large">xx large</p> <p class="x-large">x large</p> <p class="large">large</p> <p class="medium">medium</p> <p class="small">small</p> <p class="x-small">x small</p> <p class="xx-small">xx small</p> </body> </html> --------------------------------------------------- IE6-Win renders xx-small as 9px, and x-small as 10px. However, FF1.5-Win renders both xx-small and x-small as 10px. I have been told that in FF, under Tools > Options > Content > Fonts & colours > Advanced > Minimum font size, it is by default set to 10px. I have Web Developer Toolbar installed, and I can disable that minimum font size so xx-small == 9px. What I want to know is whether that minimum font size is set to 10px by default when you first install FF, and if it is like that in all versions of the browser. If that is true, then we can't use xx-small to render 9px fonts, which I think is a limitation, and besides, we have two different keywords (x-small and xx-small) that look the same size in FF. Thanks. ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
