pxをemに変換するミックスインがあります:
.margin(@target: @targetsize, @basefont: @em){
margin:(@target / @basefont) + 0em;}
CSSのmarginプロパティが変数に置き換えられるように、そのミックスインを変更したいと思います。例えば:
.pxtoem(@target: @targetsize, @basefont: @em, @property: @property){
@property:(@target / @basefont) + 0em;
}
だから私はそれを例えばで呼ぶことができます:
.pxtoem(2,1,margin-bottom);
これは可能ですか?もしそうなら、どのように?
ありがとう :)