只有当我使用较少的两个课程时,我怎么能有CSS工作?

时间:2015-08-27 11:59:53

标签: css less

我的申请表中有<div>。它被设置为&#34; enumPanel&#34;并动态地我添加了类#34; current&#34;。

我怎样才能将其连接起来,以便只有当div上存在两个类时,我的属性才会生效?

.enumPanel .current {
   // this does not seem to work
}

2 个答案:

答案 0 :(得分:2)

<强> CSS

.enumPanel.current {}

<强> LESS

.enumPanel {
   &.current {

   }
}

答案 1 :(得分:1)

.enumPanel.current {
    // this will work
}