Table Border
I'm trying to have a border only on the top and bottom of a table. I used this code to create the styles:
style="border-bottom: 1px solid #000000;"
style="border-top: 1px solid #000000;"
Then used it in my border thus (I assume TD stands for table definition):
<table width="100%" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="border-bottom: 3px solid #000000;border-top: 3px solid #000000;" >
<td width="15%" height="45" align="left" nowrap="nowrap" bgcolor="#99CC66" class="style1"> </td>
<td width="85%" align="left" nowrap="nowrap" bgcolor="#99CC66" class="style1"><a href="http://www/test/index.html" class="stylelinks">HOME</a> | <span class="style4"><span class="style5"><a href="http://www/test/stories.html"" class="stylelinks">STORIES</a></span></span>| <span class="style4"><span class="style5"><a a href="http://www/test/stories.html"" class="stylelinks">CONTACT ME</a> | <a href="a href="http://www/test/donate.html"" class="stylelinks">DONATE </a></span></span></td>
</tr>
</tbody>
</table>
But it didn't add any borders. Have I coded it wrong as I couldn't find any where else to set the table border properties?
Thanks
Alan
