mixed-units-05.html (264B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 body { 6 background: rgb(0, 0, 255); 7 } 8 @media (width: calc(900vh + 10px)) { 9 body { 10 background: rgb(255, 165, 0); 11 } 12 } 13 </style> 14 </head> 15 <body></body> 16 </html>