Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Max Width</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8">
- <style type="text/css">
- @media (min-width: 600px) {
- body {
- background-color: red;
- }
- }
- @media (max-width: 599px) {
- body {
- background-color: blue;
- }
- }
- </style>
- </head>
- <body>
- <h1>Welcome to My Web!</h1>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment