My HTML/CSS code below works great for underlining the text in a single table cell when the mouse hovers over it but I'd like it to underline all the text in row of cells, not just the single cell. I don't need it to underline the entire row with a single line -- a line under each text item would be fine, though a single line would work too if that's easier.
I thought changing the a: to tr: would do the trick, but it had no effect.
<html>
<head>
<title>Project Index</title>
<style type="text/css">
a:link {text-decoration:none;}
a:hover {text-decoration: underline; }
</style>
</head>
<body>
<h2 style="text-align: center;">
Project Index</h2>
<h3 style="text-align: center;">
2013-06-11 18:44</h3>
<table align="left" border="0" cellpadding="1" cellspacing="1" height="29" width="728" style="font-family:arial,helvetica,sans-serif;font-size: 12px;">
<tbody>
<tr>
<th scope="col">
Project
<hr />
</th>
<th scope="col">
Activity
<hr />
</th>
<th scope="col">
Items
<hr />
</th>
</tr>
<tr>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 1.html">Test Project 1 </a></th>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 1.html">2013-06-09 17:31</a></th>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 1.html">RFI:5 CCO:2 </a></th>
</tr>
<tr>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 2.html">Test Project 2 </a></th>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 2.html">2013-06-06 09:06</a></th>
<th scope="col" style="text-align: left;">
<a style="color:#0000cd;" href="C:\Users\Caterpillar\Google Drive\SPDA\Standards\Project Reports\Full Reports\Test Project 2.html">RFI:2 </a></th>
</tr>
</tbody>
</table>
</body>
</html>