搜尋

首頁  >  問答  >  主體

前端 - sass嵌套,.child{.parent & { }} 無效?

<span ng-class="{'group-expand': isExpand}">
    <i class="icon-arrow-right"></i>
</span>
@mixin rotate($deg) {
  -webkit-transform: rotate($deg);
  -moz-transform: rotate($deg);
  -ms-transform: rotate($deg);
  -o-transform: rotate($deg);
  transform: rotate($deg);
}

//solution1
.icon-arrow-right {
    @include rotate(0deg);
    .expand & {
        @include rotate(90deg);
    }
}

//solution2
.icon-arrow-right {
    @include rotate(0deg);
}
.expand .icon-arrow-right {
    @include rotate(90deg);
}

請問為何 solution1 無效呢?

迷茫迷茫2744 天前471

全部回覆(1)我來回復

  • 怪我咯

    怪我咯2017-05-15 17:01:45

    複製你的程式碼 編譯成功
    是你scss是版本問題吧

    回覆
    0
  • 取消回覆