I have the CSS below:
table.Table12 { border:1px solid blue; }
table.Table12 td { border:1px solid blue; width:200px;}
table.Table12 a:link{ font-weight: bold;}
and the html code below:
<table class="Table12" align="right">
<tr><td><a href="http://www.example.com/test1.php">test1</a></td>
<td><a href="http://www.example.com/test2.php">test2</a></td></tr>
<tr><td><a href="http://www.example.com/test3.php">test3</a></td>
<td><a href="http://www.example.com/test4.php">test4</a></td></tr>
</table>
All work fine and I set all table to bold font; I just need to change the font of "test3" to normal font in CSS; Is this possible??