我有一个包含三列的表格。当我将鼠标悬停在第三列时,我希望能够仅更改第三列的格式。
我希望能够结合
td:nth-child(3){background-color:#ddd;}
和
td:悬停{background-color:#ddd;}
我该怎么做?
答案 0 :(得分:0)
为单元格指定一个类名或ID。
td[id="your id"]{...}
td[id="your id"]:hover{background-color: #ddd;}
答案 1 :(得分:0)
我认为这就是你所追求的目标。
td:hover:nth-child(1) {background-color: #f5f5f5;}
td:hover:nth-child(2) {background-color: #ff0000;}
td:hover:nth-child(3) {background-color: #ddd;}

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
&#13;
干杯