博客列表 >主轴为垂直方向时的项目排列

主轴为垂直方向时的项目排列

南宫
南宫原创
2020年06月28日 11:49:09610浏览
  1. <!-- flex-direction使用 -->
  2. <div class="container">
  3. <div class="item">1</div>
  4. <div class="item">2</div>
  5. <div class="item">3</div>
  6. </div>
  1. .container{
  2. width: 300px;
  3. height: 150px;
  4. display: flex;
  5. /* 主轴方向:默认为行 */
  6. flex-direction: row;
  7. flex-direction: column;
  8. /* 项目二边分配 */
  9. justify-content: flex-start;
  10. justify-content: flex-end;
  11. justify-content: center;
  12. /* 项目之间分配 */
  13. justify-content: space-between;
  14. justify-content: space-around;
  15. justify-content: space-evenly;
  16. }
  17. </style>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议