Posted by Beauregard T. Shagnasty on 01/31/06 16:50
Gwayn wrote:
> #navlist
> {
> padding: 0 0px 0px;
> margin-left: 0;
> font: bold 12px Verdana, sans-serif;
You've not heard yet that setting font sizes in px is a Bad Idea™. IE
users with vision disabilities will not be able to resize your content.
Using Verdana is also not desired:
http://www.xs4all.nl/~sbpoley/webmatters/verdana.html
If you feel you need to assign the fonts, use:
font: bold 100% sans-serif;
Add:
body {
font: 100% sans-serif;
}
--
-bts
-Warning: I brake for lawn deer
[Back to original message]
|