VUE中CSS样式加scoped不起作用的解决办法-CSS样式穿透

样式穿透的三种方法

1.使用>>>

.wrapper >>> .swiper-pagination-bullet-active
    background: #fff

2.使用 /deep/

<style scoped>
/deep/ .el-input-group__append{
 padding: 0 5px;
}
</style>
.wrapper /deep/ .swiper-pagination-bullet-active{
    background: #fff;
}

3.使用 ::v-deep

::v-deep .aaa{
 ***
}
上一篇:IDEA2020一直卡在reading maven projects


下一篇:MybatisPlus简单使用