<!DOCTYPE html> <html> <head> <style> h2{ font-size:22px; } @media screen and (max-width:300px){ h2{ font-size:20px; } } </style> </head> <body> <div>The font-size of text is 20px for devices having width less than 300px.</div> </body> </html>
Run
×
Share