@media
ou @import
all
(valeur par défaut), screen
et print
and
, not
, only
et ,
(virgule, agit comme un or)
width
, height
, orientation
, ...@import
permet aussi d'inclure une feuille de style dans une autre@import url("fancyfonts.css") screen;
@media print {
* { color : black; background-color : white; }
}
@media screen and (width > 750px) {
body { line-height: 1.2 }
}