批改状态:合格
老师批语:当天的作业,不要分成多次提交, 不方便统计完成情况
<!-- flex-direction使用 --><div class="container"><div class="item">1</div><div class="item">2</div><div class="item">3</div></div>
.container{width: 300px;height: 150px;display: flex;/* 主轴方向:默认为行 */flex-direction: row;flex-direction: column;/* 项目二边分配 */justify-content: flex-start;justify-content: flex-end;justify-content: center;/* 项目之间分配 */justify-content: space-between;justify-content: space-around;justify-content: space-evenly;}</style>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号