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.

52 lines
905 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: 100%;
  10. height: 500px;
  11. }
  12. #div0 div {
  13. float: left;
  14. height: 200px
  15. }
  16. #div0 div:nth-child(1) {
  17. background-color: aqua;
  18. }
  19. #div0 div:nth-child(2) {
  20. background-color: red;
  21. }
  22. #div0 div:nth-child(3) {
  23. background-color: green;
  24. }
  25. </style>
  26. <style media="(min-device-width: 300px) and (max-device-width: 399px)">
  27. #div0 div {
  28. width: 50%;
  29. }
  30. </style>
  31. <style media="(min-device-width: 400px) and (max-device-width: 499px)">
  32. #div0 div {
  33. width: 33.3%;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <div id="div0">
  39. <div></div>
  40. <div></div>
  41. <div></div>
  42. </div>
  43. </body>
  44. </html>