こんにちは、クラス "display"を持つ入力要素にクラス "hide"を追加する必要があります。lessから入力要素にクラスを追加する方法
<input type="text" id="Text" class="display"/>
lessから要素にクラスを追加する方法はありますか?
こんにちは、クラス "display"を持つ入力要素にクラス "hide"を追加する必要があります。lessから入力要素にクラスを追加する方法
<input type="text" id="Text" class="display"/>
lessから要素にクラスを追加する方法はありますか?
あなたはこの試しください
input .display {
.hide{
//css
}
}
それは動作しません –
を追加することができます。これは動作します
.hide{
background-color:blue;
}
.display{
color:red;
.hide;
}
それはdoesn ' –
あなたのCSSに.hide {display:none;}のようなhideクラスを追加しました –
.hideクラスを追加した後このクラスはこのような入力要素に追加する必要があります –
を
HTML
<input type="text" class="display"/>
LESS
を.hide {
color: red;
}
input {
&.display {
.hide();
}
}
[動的クラスから要素への動的クラス]の複製が可能です(http://stackoverflow.com/questions/27617789/dynamic-class-to-element-with-less) – Iceman