el-input宽度设置
时间: 2023-10-08 22:05:25 浏览: 94
Element InputNumber计数器的使用方法
可以使用style属性来设置el-input的宽度,如下所示:
```html
<el-input style="width: 200px;"></el-input>
```
也可以在外层容器中设置宽度,如下所示:
```html
<div style="width: 200px;">
<el-input></el-input>
</div>
```
还可以使用class属性来设置宽度,如下所示:
```html
<el-input class="my-input"></el-input>
```
```css
.my-input {
width: 200px;
}
```
阅读全文