Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> @media screen and (max-width: 767px) { .content { background-color: lightblue; padding: 30px; } } @media screen and (min-width: 768px) { .content { background-color: pink; padding: 10px; } } @media screen and (min-width: 800px) { .content { background-color: lightgreen; color: white; padding: 50px; } } </style> </head> <body> <div class="content"> <h2>Resize the browser to see the effect.</h2> <p> CSS is a rule-based language, which means that you define rules specifying groups of styles applying to particular elements or groups of elements on the web page. </p> </div> </body> </html>