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を使用して次のことをしたいと思います:
width: #{$percent}%;
数値$percentを含む変数です。が 50 の場合$percent、コンパイル済みの CSS は次のようになります。
$percent
width: 50%;
どの構文を使用すればよいですか?
1% を掛ける:
$percent: 50 .foo width: $percent * 1%
結果:
.foo { width: 50%; }