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@includeを省略形でラップできるようにしたいと思います。@i
@include
@i
これは可能ですか?これを行う最善の方法は何ですか?
#foo { @include rounded(3px); }
なる:
#foo { @i rounded(3px); }
前もって感謝します。
Sass構文を使用すると、次を使用できます+。
+
#foo +rounded(3px)