I could do this with Javascript but I how would I go about achieving this with CSS only:
<table>
    <tr>
        <td>
            Hover <a href="#info">me</a>
        </td>
    </tr>
    <tr>
        <th id="info">
            Info
        </th>
    </tr>
</table>
All I want is when the anchor link gets hovered on, the table header "info" gets affected. And these are what I've tried to no avail:
a:hover #info
{  
    text-decoration: underline;
}
a:hover table tr > th#info
{  
    text-decoration: underline;
}
What did I miss?
 
     
    