el-input 指定宽度
在Vue.js中使用Element UI库的el-input
组件时,可以通过设置样式来指定宽度。以下是几种设置宽度的方法:
- 内联样式:
<el-input v-model="input" style="width: 200px;"></el-input>
- 使用class绑定:
<el-input v-model="input" class="custom-input"></el-input>
在<style>
标签或者单独的CSS文件中定义样式:
<style>
.custom-input {
width: 200px;
}
</style>
- 使用scoped的CSS:
<style scoped>
.custom-input >>> .el-input__inner {
width: 200px;
}
</style>
- 使用内联样式直接对
.el-input__inner
元素设置宽度:
<el-input v-model="input">
<i slot="suffix" class="el-input__icon el-icon-search" style="width: 200px;"></i>
</el-input>
以上代码中,200px
可以替换为任何你想要的宽度。
评论已关闭