Page is a not externally linkable
swa66 - 4:08 pm on Jun 13, 2009 (gmt 0)
First: A font family is a list of fonts and it really ought to end in a generic font. Linux, FreeBSD e.g. won't always have it -it's a Microsoft font (licenses needed for others to use it)-, bundled with Windows since Windows 95 and Window NT. If you only list one font and it's not available, odds are courier is going to be used by the browser ... Now you would not want that, would you ? Generic fonts are defined here: Secondly if you set it on e.g. a body it'll inherit on it's own with less load on the browsers ("*" matches any element, inheritance is supposedly faster - not that it'll make all that much of a difference IMHO) So, I'd change that into e.g.:
FWIW, and with all due respect:
*{font-family:tahoma}
Isn't the best example possible.
[w3.org...]
body {
font-family: tahoma, "Myriad Pro", helvetica, sans-serif;
}