@media工作原理和在常规CSS中一样,但是,要使用Stylus的块状符号。
@media
@media print #header #footer display none
生成为:
@media print { #header, #footer { display: none; } }