Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <style> | |
| 4 body { | |
| 5 background: red; | |
| 6 width: 1000px; | |
| 7 height: 1000px; | |
| 8 } | |
| 9 @media (min-width: 795px) { | |
| 10 body { | |
| 11 background: green; | |
| 12 } | |
| 13 } | |
| 14 @media (min-height: 595px) { | |
| 15 body { | |
| 16 color: blue; | |
| 17 } | |
| 18 } | |
| 19 </style> | |
| 20 <body> | |
| 21 Should be blue on green if body's full size (including scrollbars) >= 795x595 px. | |
| 22 </body> | |
| OLD | NEW |