5.媒体查询.html 737 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <!-- <link rel="stylesheet" href="./xxx" media="screen and (min-width:375px) and (max-width:414px)"> -->
  8. <style>
  9. #box{
  10. width: 200px;
  11. height: 200px;
  12. background: #00f;
  13. }
  14. @media screen and (min-width:375px) and (max-width:414px) {
  15. #box {
  16. background: #f00;
  17. }
  18. }
  19. @media screen and (min-width:500px) {
  20. #box {
  21. background: #ff0;
  22. }
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div id="box"></div>
  28. </body>
  29. </html>