<!DOCTYPE html> <html> <head> <style> @media screen and (max-width:400px){ div{background-color:gray;} } @media print and (max-width:900px){ div{color:white;} } </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