<!DOCTYPE html> <html> <head> <style> p{ color:blue; } @media screen and (max-width:300px) { p{ color:red; } } </style> </head> <body> <p>The color of the text is red for the devices that have maximum size up to 300px.</p> </body> </html>
Run
×
Share