Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 444 Bytes

7. Can you give an example of an @media property other than screen?.md

File metadata and controls

18 lines (14 loc) · 444 Bytes

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

Yes, there are four types of @media properties (including screen):

  • all – for all media type devices
  • print – for printers
  • speech – for screenreaders that “reads” the page out loud
  • screen – for computer screens, tablets, smart-phones etc.

Here is an example of print media type’s usage:

@media print {
  body {
    color: black; 
  }
}