Chapter_12 Example
responsive_mediaQuery.html
responsive_mediaQuery.html
Full Screen
<!DOCTYPE html> <html> <head> <title>Responsive Web Basic</title> <style> @media (max-width: 499px) { body { background: red; } } @media (min-width: 500px) and (max-width: 799px) { body { background: green; } } @media (min-width: 800px) { body { background: blue; } } </style> </head> <body> </body> </html>