Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Sassルールでミックスインを選択する方法はありますか?
再帰的にネストされたクラスに役立ちます。抽出したいとします:
.my_class margin-top: 1px &+.m y_class margin-top: 0
の中へ
@mixin my_mixin margin-top: 1px; &+@any_class(my_mixin) margin-top: 0
これはあなたがやろうとしていることに対してうまくいくでしょうか?
サス:
@mixin my_mixin margin-top: 1px & + & margin-top: 0 h1 @include my_mixin
生成されたCSS:
h1 { margin-top: 1px; } h1 + h1 { margin-top: 0; }