3_media.html 579 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. #div1{
  10. background: red;
  11. height: 200px;
  12. }
  13. @media screen and (max-width:800px){
  14. #div1{
  15. background: green;
  16. }
  17. }
  18. @media screen and (max-width:400px) {
  19. #div1{
  20. background: pink;
  21. }
  22. }
  23. </style>
  24. </head>
  25. <body>
  26. <div id="div1"></div>
  27. </body>
  28. </html>