is it possible to eliminate whitespace when formatting a table as such
the problem is that the span tags and the images are in a td so when i put the span tags in(either at the bginning or the end) and reposition them there ends up being a space where the spans originate. This causes far too much white space. is there a way to put a span tag in a position it and have the whitespace eliminated?
Code:
<style>
span
{
FONT-FAMILY:verdana, arial, helvetica, sans-serif;
COLOR:#000033;
FONT-SIZE:11px;
letter-spacing:;
position: relative;
text-decoration:none;
display:inline;
}
</style>
<table bgcolor="#d4d2cc" height="200" align="center" border="1" style="border-collapse:collapse;FONT-FAMILY:verdana, arial, helvetica, sans-serif;FONT-SIZE:10px;">
<tr>
<td valign="top" align="center">
<span style="width:98px;bottom:-15;"><a href="accountDisplay.asp?id=519&tab=1" onClick="parent.document.getElementById('tabH').value='1'">General</a></span>
<span style="width:98px;bottom:-15;"><a href="accountDisplay.asp?id=519&tab=2" onClick="parent.document.getElementById('tabH').value='2'">Screenings</a></span>
<span style="width:98px;bottom:-15;"><a href="accountDisplay.asp?id=519&tab=3" onClick="parent.document.getElementById('tabH').value='3'">Trainings</a></span>
<span style="width:98px;bottom:-15;"><a href="accountDisplay.asp?id=519&tab=4" onClick="parent.document.getElementById('tabH').value='4'">Certifications</a></span>
<a href="accountDisplay.asp?id=519&tab=1" onClick="parent.document.getElementById('tabH').value='1'"><img src="../images/tabopen.gif" ></a><a href="accountDisplay.asp?id=519&tab=2" onClick="parent.document.getElementById('tabH').value='2'"><img src="../images/tabclosed.gif" ></a><a href="accountDisplay.asp?id=519&tab=3" onClick="parent.document.getElementById('tabH').value='3'"><img src="../images/tabclosed.gif" ></a><a href="accountDisplay.asp?id=519&tab=4" onClick="parent.document.getElementById('tabH').value='4'"><img src="../images/tabclosed.gif" ></a>
</td>
</tr>