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