...
One of the interesting challenges with web browsers is they run on all types of operating systems and so we cannot guarantee what font is available on a given browser so CSS allows one to specify several font families in order of most preferred to least preferred.
For instance:
Code Block |
---|
body.MAIN > * {
font-family: Arial, Helvetica, sans-serif;
} |
...