I have a navigation bar with rollovers and at the moment the rollovers butt against each other. It would be nice if the rollovers were seperated by a thin black line. How do I do this?
HTML thus:
<table border='0' cellpadding='0' cellspacing='0' id='2' style='position:absolute; top:128px; left: 50px; width: 143px;background-color: #CCCCCC'>
<tr>
<td style='height:10px; background-color: #C0C0C0'> </td>
</tr>
<tr>
<td style='height:10px'> </td>
</tr>
<tr>
<td align='center' style='display: block'>
<a href='default.php' onMouseOver=\"WM_imageSwap('home', 'images/homeroll.gif')\"; onMouseOut=\"WM_imageSwap('home', 'images/home.gif')\";><img name='home' src='images/home.gif' border='0'></a></td>
</tr>
<tr>
<td align='center' style='display: block'>
<a href='resume.php' onMouseOver=\"WM_imageSwap('resume', 'images/resumeroll.gif')\"; onMouseOut=\"WM_imageSwap('resume', 'images/resume.gif')\";><img name='resume' src='images/resume.gif' border='0'></a></td>
</tr>
<tr>
<td style='height:692px'> </td>
</tr>
<tr>
<td style='height: 10px; background-color: #C0C0C0'> </td>
</tr>
</table>