I can see how CSS can be used to change the color of individual cells within the <TD> tags when the mouse hovers over a link. Can this be done on a full row of a few columns? ...so that when you hover over a cell in column 1, columns 2 & 3 are also highlighted?
Here is what I have so far:
<html><head><title>Row Hover</title>
<STYLE type="text/css" media="screen">
.Menu { font : bold }
.Menu a,.Menu a:link,.Menu a:active,.Menu a:visited { display : block; background : #FFFFFF; color : teal; text-decoration : none; }
.Menu a:hover { background : #F6DEA2; color : black; cursor : pointer; text-decoration : none; }
</style>
</head><body>
<table>
<tr>
<td class=Menu><a href=<td class=Menu><a href= Engine</a></td>
<td class=Menu><a href= stars</a></td>
</tr>
</table>
</body></html>
Here is what I have so far:
<html><head><title>Row Hover</title>
<STYLE type="text/css" media="screen">
.Menu { font : bold }
.Menu a,.Menu a:link,.Menu a:active,.Menu a:visited { display : block; background : #FFFFFF; color : teal; text-decoration : none; }
.Menu a:hover { background : #F6DEA2; color : black; cursor : pointer; text-decoration : none; }
</style>
</head><body>
<table>
<tr>
<td class=Menu><a href=<td class=Menu><a href= Engine</a></td>
<td class=Menu><a href= stars</a></td>
</tr>
</table>
</body></html>