(Imagine it all filled)
<table> <tr> <td>This</td> <td>Is </td> <td>a</td> <td>table</td> <td>demo</td> </tr> <tr> <td>just</td> <td>another</td> <td>row</td> <td class="last"><a href="#">I'm a CSS styled button!</a></td> </tr> </table>
tr:hover { background-color:#f5f5f5; } td .last a { background-color:#000; color:#fff; padding:5px 13px; } td .last a:hover { background-color:red; }So what I want to do: When I hover the TR I want the background-color of ".last a" to change also. Like a "double hover"?
Hope I make any sense...