1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
@media not all { div { color: blue; } } @media all { div { color: red; } } div { width: 20px; height: 20px; background-color: ghostwhite; } @media (max-width: 550px) { div { color: green; } } @media (min-height: 300px) and (max-height: 320px) { div { color: orange; } }