You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
789 B

2 years ago
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. #div0 {
  9. width: 100px;
  10. height: 200px;
  11. }
  12. /* 根据不同的尺寸应用不同的效果 */
  13. /* screen 是指屏幕, min-device-width 为屏幕最小尺寸,max-device-width 为屏幕最大尺寸 */
  14. @media screen and (min-device-width: 200px) and (max-device-width: 300px) {
  15. #div0 {
  16. background-color: aqua;
  17. }
  18. }
  19. @media screen and (min-device-width: 301px) and (max-device-width: 2000px) {
  20. #div0 {
  21. background-color: red;
  22. }
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div id="div0"></div>
  28. </body>
  29. </html>