Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 284 Bytes

media.md

File metadata and controls

18 lines (13 loc) · 284 Bytes

@media

The @media works just as it does within regular CSS, but with Stylus's block notation:

 @media print
   #header
   #footer
     display none

Yielding:

  @media print {
    #header,
    #footer {
      display: none;
    }
  }