el-button对齐
时间: 2023-09-02 17:12:24 浏览: 135
radio和文字垂直对齐
el-button 组件可以通过设置不同的属性来实现对齐方式,例如:
1. 设置 `align` 属性来对齐按钮的文本内容,可选值为 `left`、`center`、`right`。
```html
<el-button align="left">左对齐</el-button>
<el-button align="center">居中对齐</el-button>
<el-button align="right">右对齐</el-button>
```
2. 设置 `icon` 属性来对齐按钮的图标,可选值为 `left`、`right`。
```html
<el-button icon="el-icon-search" icon-position="left">图标在左侧</el-button>
<el-button icon="el-icon-search" icon-position="right">图标在右侧</el-button>
```
3. 使用 CSS 样式来调整按钮的布局,例如使用 `display: flex` 和 `justify-content` 属性来实现按钮的水平对齐。
```html
<div style="display: flex; justify-content: space-between;">
<el-button>按钮1</el-button>
<el-button>按钮2</el-button>
</div>
```
阅读全文