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