display: flex;居左居中和居右
时间: 2024-04-23 16:20:09 浏览: 138
flex 弹出窗口并居中显示
3星 · 编辑精心推荐
display: flex; 是CSS中的一个属性,用于创建弹性盒子布局。设置不同的justify-content属性值,可以实现居左、居中和居右的效果。
1. 居左对齐:使用justify-content: flex-start;[^1]
```css
.button-wrapper {
display: flex;
justify-content: flex-start;
}
```
2. 居中对齐:使用justify-content: center;
```css
.button-wrapper {
display: flex;
justify-content: center;
}
```
3. 居右对齐:使用justify-content: flex-end;
```css
.button-wrapper {
display: flex;
justify-content: flex-end;
}
```
阅读全文