ASCII码 ASCII码

CSS: flex布局:容器上的属性

发布于:2022-05-23 17:27:39  栏目:技术文档

  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>flex布局:容器上的属性</title>
  8. </head>
  9. <body>
  10. <div class="container">
  11. <div class="item">item1</div>
  12. <div class="item">item2</div>
  13. <div class="item">item3</div>
  14. </div>
  15. <style>
  16. *{
  17. margin: 0;
  18. padding: 0;
  19. box-sizing: border-box;
  20. }
  21. /* flex容器 */
  22. .container{
  23. display: flex;
  24. height: 20em;
  25. border: 1px solid #000;
  26. }
  27. .container > .item{
  28. /* flex容器中的“子元素”则成了“弹性项目/flex项目” */
  29. width:10em;
  30. padding: 1em;
  31. height: 10em;
  32. background-color: lightcyan;
  33. border: 1px solid #000;
  34. }
  35. .container{
  36. /* 1 用在容器中的属性 */
  37. /* flex-direction: row; */
  38. /* 默认 */
  39. /* flex-direction: column; */
  40. /* flex-wrap: wrap; */
  41. /* flex-flow: row wrap; */
  42. /* 是否允许换行 */
  43. flex-flow: row nowrap;
  44. /* 2 剩余空间的设置 */
  45. /* place-content: start;
  46. place-content: end; */
  47. /* place-content: center center; */
  48. /* 两端对齐 */
  49. /* place-content: space-between;
  50. /* 分散对齐 */
  51. /* place-content: space-around; */
  52. /* 平均对齐 */
  53. /* place-content: space-evenly; */
  54. /* 3 垂直轴的对齐 */
  55. place-items: stretch;
  56. place-items:start;
  57. place-items:end;
  58. place-items:center;
  59. /* flex容器只需要记住三个属性 */
  60. /* 1. flex-flow 主轴方向,换行
  61. 2. place-content: 项目在主轴上的排列与空间分配;
  62. 3.place-items项目在交叉轴上的对齐 */
  63. }
  64. </style>
  65. </body>
  66. </html>
相关推荐
阅读 +