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.

85 lines
1.5 KiB

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: 500px;
  11. }
  12. #div0 div {
  13. float: left;
  14. height: 200px
  15. }
  16. /* 一行三个 div */
  17. @media screen and (min-device-width: 400px) and (max-device-width: 500px) {
  18. #div0 div {
  19. width: 33.3%;
  20. }
  21. #div0 div:nth-child(1) {
  22. background-color: aqua;
  23. }
  24. #div0 div:nth-child(2) {
  25. background-color: red;
  26. }
  27. #div0 div:nth-child(3) {
  28. background-color: green;
  29. }
  30. }
  31. /* 两行三个 div */
  32. @media screen and (min-device-width: 300px) and (max-device-width: 399px) {
  33. #div0 div {
  34. width: 50%;
  35. }
  36. #div0 div:nth-child(1) {
  37. background-color: aqua;
  38. }
  39. #div0 div:nth-child(2) {
  40. background-color: red;
  41. }
  42. #div0 div:nth-child(3) {
  43. background-color: green;
  44. }
  45. }
  46. /* 三行三个 div */
  47. @media screen and (min-device-width: 200px) and (max-device-width: 299px) {
  48. #div0 div {
  49. width: 100%;
  50. }
  51. #div0 div:nth-child(1) {
  52. background-color: aqua;
  53. }
  54. #div0 div:nth-child(2) {
  55. background-color: red;
  56. }
  57. #div0 div:nth-child(3) {
  58. background-color: green;
  59. }
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div id="div0">
  65. <div></div>
  66. <div></div>
  67. <div></div>
  68. </div>
  69. </body>
  70. </html>