|
gorilla -> Save time and trouble - set all your fonts at once. (10/29/2003 13:16:24)
|
At the start of your style sheet put something like this: * { font: 95% Verdana, Arial, Helvetica, sans-serif; } You have now declared the fonts for everything. Points to note: 1. Applying fonts to anything below that in the style sheet will affect that selector without messing up anything else :-) 2. IE has a notoriously troublesome bug where it does not some cascade the font down into <td> You can fix it like this: * , td { font: 90% Verdana, Arial, Helvetica, sans-serif; } or by explicitly declaring the properties for the td element. thus: td { font: 90% Verdana, Arial, Helvetica, sans-serif; } 3. Members of the gorilla group have a policy of using font relative sizing rather than pt or px. If you use pt or px you will have to replace my percentages with the appropriate unit of measurement.. Remembering always that 1px = 0,75pt JB
|
|
|
|