I am trying to change the :hover state for a tr object - but only one tr object, not the hover state for the rest.
The js-fiddle: http://jsfiddle.net/Lgs12pof/1/
I am trying to not make the tr tag's background, where it says bar, change. I am looking for a css hack which i can use in the style"" element, and this way not make it change background color on hover.
I have tried the following, but this does not change the hover state:
<tr style="background-color:none !important">
<td colspan="5">
<div>Bar</div>
</td>
</tr>
Regards, Patrick