【发布时间】:2015-12-02 07:32:57
【问题描述】:
我正在使用剑道日历
这是html
> <table> <tr> <td role="gridcell" class=""><a tabindex="-1"
> class="k-link" href="#" data-value="2015/11`enter code here`/1" title="Tuesday,
> December 01, 2015"><div class="exhibition">1</div></a></td> </tr>
> </table>
悬停时“k-state-hover”类正在添加到 td
<td role="gridcell" class="k-state-hover"><a tabindex="-1"
class="k-link" href="#" data-value="2015/11/1" title="Tuesday,
December 01, 2015"><div class="exhibition">1</div></a></td>
我想改变“展览”div的“k-state-hover”颜色
我试过这样:
.exhibition::before:hover{
background-color:"red";
}
但它不起作用
【问题讨论】: