Below is the CSS code snippet I am using:
table.Table12 { border:1px solid blue; }
table.Table12 td { border:1px solid blue; width:200px;}
table.Table12 a:link { font-weight: bold;}
Additionally, here is the HTML code:
<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>
Currently, all tables have a bold font style applied. However, I want to change the font of "test3" to normal in the CSS. Is this achievable?