我的申请表中有<div>
。它被设置为&#34; enumPanel
&#34;并动态地我添加了类#34; current
&#34;。
我怎样才能将其连接起来,以便只有当div上存在两个类时,我的属性才会生效?
.enumPanel .current {
// this does not seem to work
}
答案 0 :(得分:2)
<强> CSS 强>
.enumPanel.current {}
<强> LESS 强>
.enumPanel {
&.current {
}
}
答案 1 :(得分:1)
.enumPanel.current {
// this will work
}