练习仓库
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.

38 lines
805 B

2 months ago
  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. <style>
  8. @media screen and (max-width: 768px) {
  9. /* 设备小于768px加载样式 */
  10. body {
  11. background-color: red;
  12. }
  13. }
  14. @media screen and (max-width: 992px) and (min-width: 768px) {
  15. /* 设备小于768px但小于992px加载样式 */
  16. body {
  17. background-color: pink;
  18. }
  19. }
  20. @media screen and (min-width: 992px) {
  21. /* 设备大于992px加载样式 */
  22. body {
  23. background-color: green;
  24. }
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. </body>
  30. </html>