vue 设置 el-input 输入框背景颜色及样式
vue 设置 el-input 背景颜色及样式
·
设置 el-input 背景颜色及样式:
<style lang="less" scoped>
/deep/.el-input {
// 输入框高度
height: 52px;
// 边框圆角
border-radius: 8px;
}
/deep/.el-input__inner {
height: 52px;
background: #cce7e7;
// 设置字号
font-size: 14px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
// 设置输入字体的颜色
color: #2c2c2c;
}
</style>
页面效果:
更多推荐
已为社区贡献10条内容
所有评论(0)