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.
私は以下をより少なく達成したいと思います:
.bar { width: 100px; } .foo .bar { width: this + 20px // 120px }
これはLessで可能ですか?もしそうなら、どのように?
ありがとう
これは機能しませんか?
@width: 100px; .bar { width: @width } .foo .bar { width: @width + 20px }