次の変数を設定しています。
@live:background:url('/cmn/static/images/live_placeholder.png');
@online:background:url('/cmn/static/images/online_placeholder.png');
@external:background:url('/cmn/static/images/external_placeholder.png');
適切なパラメータを挿入して背景画像を設定するミックスインを作成したいのですが、ミックスインを設定する手順が欠けていることはわかっています。 ( )。
.small-thumb(@live){
background-repeat:no-repeat;
height:50px;
width:50px;
float:left;
margin-right:5px;
}
しかし、最終的に、私の LESS では、次のように呼び出します: .small-thumb(@live);
それぞれに個別の mixin を作成する必要がありますか?
ありがとう