Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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;
}

...