用到很多vue常用的组件库(element, vant, vuetify),虽然配好了样式但是还是需要更改其他的样式
三大样式穿透 >>> , ::v-deep , /deep/
在style经常用scoped属性实现组件的私有化,所以才需要样式穿透
需要注意:
- ( >>> 只作用于css
- ::v-deep 只作用于sass
- /deep/ 只作用于less
示例: 1
<style lang="scss" scoped>
.conBox ::v-deep .el-input__inner{
padding:0 10px;
}
</style>
2
<style lang="less" scoped>
.conBox /deep/ .el-input__inner{
padding:0 10px;
}
</style>
3
<style>
.num-input {
width: 90px;
margin-top: 15px;
>>> .ivu-input {
text-align: center!important;
}
}
</style>