fai una tabella unica

codice:
<table id="tab">
<tr>
<td id="uno"></td>
<td id="due"></td>
<td id="tre"></td>
</tr>
</table>
e nello stile
codice:
#tab {
 padding: 0;
 border: 0;
 border-collapse: collapse;
 border-spacing: 0;
}
#uno {
 background-image: url(uno.gif);
 background-repeat: no-repeat;
}
#due {
 background-image: url(due.gif);
 background-repeat: no-repeat;
}
#tre {
 background-image: url(tre.gif);
 background-repeat: no-repeat;
}