recherche

Maison  >  Questions et réponses  >  le corps du texte

Frontend - imbrication sass, .child{.parent & { }} invalide ?

<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);
}

Excusez-moi, pourquoi la solution 1 n'est pas valide ?

迷茫迷茫2814 Il y a quelques jours499

répondre à tous(1)je répondrai

  • 怪我咯

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

    Copiez votre code et la compilation est réussie
    Il s'agit peut-être d'un problème de version avec votre scss

    répondre
    0
  • Annulerrépondre