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.

50 lines
1.1 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. display: flex;
  10. }
  11. #div0 div:first-child {
  12. background-color: aqua;
  13. flex: 0 0 50px
  14. }
  15. #div0 div:nth-child(2) {
  16. background-color: blue;
  17. flex: 1 1 auto
  18. }
  19. #div0 div:last-child {
  20. background-color: red;
  21. flex: 0 0 50px
  22. }
  23. /* 媒体查询 */
  24. @media (min-device-width: 400px) and (max-device-width: 500px) {
  25. #div0 div:nth-child(2) {
  26. background-color: yellowgreen;
  27. }
  28. }
  29. @media (min-device-width: 501px) and (max-device-width: 600px) {
  30. #div0 div:nth-child(2) {
  31. background-color: pink;
  32. }
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <div id="div0">
  38. <div>one</div>
  39. <div>two</div>
  40. <div>three</div>
  41. </div>
  42. </body>
  43. </html>