美文网首页
解决vue-awesome-swiper 组件内设置样式失效问题

解决vue-awesome-swiper 组件内设置样式失效问题

作者: 小学生江止丶 | 来源:发表于2018-09-06 21:15 被阅读0次

    最优解决办法:样式穿透

    sass和less的样式穿透:/deep/

     #father /deep/ .swiper-pagination-bullet-active {
        color:#fff;
        background: #ff51d6;
      }
    

    stylus的样式穿透:>>>

     #father >>> .swiper-pagination-bullet-active {
        color:#fff;
        background: #ff51d6;
      }
    

    相关文章

      网友评论

          本文标题:解决vue-awesome-swiper 组件内设置样式失效问题

          本文链接:https://www.haomeiwen.com/subject/kdjfgftx.html