I have an HTML table, for example:
<table>
<tr>
<td style="background-color:red;">
qwertz
</td>
</tr>
</table>
This table, is in a cell () of another table, as it have information in colors.
The parent table got a listener in js or CSS (I don't know) which changes the background-color to one color, when you hover (mouseover).
That's pretty bad, as you can't see the table information then - but right, for the whole line.
So at the end it's this.
<table>
<tr><td>Blabla</td><td>Blabla</td>
<td>
----
<table>
<tr>
<td style="background-color:red;">
qwertz
</td>
</tr>
</table>
----
</td></tr></table>
How can I prevent, that the style changes on mousehover, when I don't have access to the CSS or js file? (don't ask..)