Quiz

Can you give an example of an `@media` property other than `screen`?

Topics
CSS

There are four types of @media properties (including screen):

  • all: for all media type devices
  • print: for printers
  • speech: for screen readers that "read" the page out loud
  • screen: for computer screens, tablets, smartphones, etc.

Here is an example of the print media type's usage:

@media print {
body {
color: black;
}
}
Edit on GitHub