我有以下情况:
.table_green {
background: #B4E391;
}
.data_table tbody tr:hover {
background-color: #fff;
cursor: pointer;
}
.unclickable_table tbody tr:hover {
background-color: inherit;
cursor: default;
}
现在tr
原来是绿色的,我希望在设置表格class='data_table unclickable_table'
后,将鼠标悬停在tr
具有table_green
类的属性上,该background-color
属性不会改变并保持绿色,但inherit
似乎不起作用
示例 html:
<table class='data_table unclickable_table'>
<tbody>
<tr class='table_green'>
<td>Untill it goes Click!</td>
</tr>
</tbody></table>
或者这个小提琴:http: //jsfiddle.net/nyDNc/1/
有什么帮助吗?