【发布时间】:2013-04-13 00:42:24
【问题描述】:
我有以下 CSS:
td: hover {
background-color:red;
}
td {
cursor: pointer;
background-color: rgb(150,150,150);
}
而我的 HTML 只是:
<table>
<tr><td> </td></tr>
</table>
我无法让hover 工作。这是为什么呢?
【问题讨论】:
标签: html css hover html-table