vue中element组件样式修改无效
·
// scss写法
<style lang="scss">
.detail{
.el-input__inner {
height: 48px;
}
}
</style>
// css写法
<style>
.detail .el-input__inner{
height: 48px;
width: 50px!important;
}
</style>
直接写style注意不加scoped,然后用一个组件最外层的class包裹住,就不会改到所有的组件的样式了。
更多推荐
所有评论(0)