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. .box{
    10. width: 300px;
    11. height: 300px;
    12. background-color: red;
    13. }
    14. @media screen and (max-width:768px) {
    15. .box{
    16. background-color: blue;
    17. }
    18. }
    19. @media screen and (min-width:768px) and (max-width:996px) {
    20. .box{
    21. background-color: aqua;
    22. }
    23. }
    24. @media screen and (min-width:996px) {
    25. .box{
    26. background-color: rgb(59, 202, 125);
    27. }
    28. }
    29. </style>
    30. </head>
    31. <body>
    32. <div class="box"></div>
    33. </body>
    34. </html>

    根据设备屏幕大小展示相应内容