<!DOCTYPE html> <html> <head> <style> div{ background-color:green; color:white; } @media screen and (max-height:400px){ div{background-color:gray;} } </style> </head> <body> <div>The background-color of div element is gray for the devices that have maximum size upto 300px.</div> </body> </html>
Run
×
Share