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