background-color: thistle; display: flex; justify-content: flex-end; } #d1>span { background-color: yellow; width: 60px; height: 100px; }
- 设置 jutify-content: center
(此时元素居中排列)
- 设置 justify-content: space-between
(先两边元素贴近边缘, 再平分剩余空间)
- 设置 justify-content: space-around
(平分剩余空间)
align-items
设置侧轴上的元素排列方式
在 justify-content: 中,我们是让元素按照主轴的方向排列,我们也可以指定元素按照侧轴方向排列
属性取值
| 取值 | 描述 |
| — | — |
| stretch | 默认值,行拉伸以占据剩余空间 |
| center | 朝着弹性容器中央对行打包 |
| flex-start | 朝着弹性容器开头对行打包 |
| flex-end | 朝着弹性容器结尾对行打包 |
| space-between | 行均匀分布在弹性容器中 |
| space-around | 行均匀分布在弹性容器中,两端各占一半 |
align-items 只能针对单行元素来实现,如果有多行元素,就需要使用 item-contents
- stretch
这个是 align-content 的默认值,意思是如果子元素没有被显式指定高度,那么就会填充满父元素的
高度
举例:
1.花花
2.大大
3.小小
- center
- flex-start