如何设置el-input的宽度
时间: 2023-11-07 13:50:33 浏览: 193
改变el-table宽度
5星 · 资源好评率100%
要设置 `el-input` 的宽度,你可以使用 `style` 属性或者 CSS 类来指定宽度。
使用 `style` 属性:
```html
<el-input style="width: 200px;"></el-input>
```
使用 CSS 类:
```html
<el-input class="custom-input"></el-input>
```
```css
.custom-input {
width: 200px;
}
```
通过这两种方法,你可以根据需要设置 `el-input` 的宽度。记得将 `200px` 替换成你期望的实际宽度值。
阅读全文