我正在尝试更改tr对象的:悬停状态 - 但只有一个tr对象,而不是其余的悬停状态。
js-fiddle: http://jsfiddle.net/Lgs12pof/1/
我试图不制作tr标签的背景,它表示条形图,更改。我正在寻找一个可以用于风格的css hack""元素,这种方式不会让它在悬停时改变背景颜色。
我尝试过以下操作,但这不会改变悬停状态:
<tr style="background-color:none !important">
<td colspan="5">
<div>Bar</div>
</td>
</tr>
此致 帕特里克
答案 0 :(得分:0)
你根本无法做到。为什么不使用ID?
<tr style="background-color:none !important" id="aRow">
<td colspan="5">
<div>Bar</div>
</td>
</tr>
CSS:
#aRow:hover {
background-color: red;
}