el-input不换行
时间: 2023-08-17 21:09:43 浏览: 351
vue + el-input 中 textarea 实现 placeholder 换行
要让 el-input 不换行,你可以使用 CSS 的 white-space 属性来控制文本的换行方式。将 white-space 设置为 "nowrap" 可以禁止元素内部的文本换行。你可以将其应用于 el-input 的样式中,如下所示:
```html
<el-input style="white-space: nowrap;"></el-input>
```
这样设置后,el-input 中的文本就不会自动换行了。
阅读全文