我有这个html我想改变abc_7下的活动类的CSS。请帮助我。
<label id="abc_7" data-ng-repeat="cell in timeCell" class="btn btn-default btnsmall active" style="width: 77px;"> </label>
我写了这个
#abc_7 .active{
background-color: green !important;
}
但它不起作用,因为它会找到#abc_7 lable中的活跃课程请帮助我。
答案 0 :(得分:6)
您指定的是孩子,而不是具有ID和班级的元素。
它应该是:(注意,ID和类之间没有空格)
#abc_7.active{
background-color: green;
}