PDA

View Full Version : remove space between table cells?



saniajax
20 Aug 2009, 07:41 AM
Hello!

I have a problem with removing the space between table cells containing images of buttons. I tried to add CSS table style with border-collapse = collapse, but that won't work either.

Also when I set the padding-right of 1 px for the table style it makes the space between the cells but still it is not equal between some central cells!

Please HELP!

The HTML goes like this:

<body>
<div>
<table cellspacing="0" cellpadding="0">
<tr>
<td><img src="Images/GIF/domov.gif" width="76" height="19" /></td>
<td><img src="Images/GIF/storitve.gif" width="76" height="19" /></td>
<td><img src="Images/GIF/kontakt.gif" width="76" height="19" /></td>
<td><img src="Images/GIF/vizija.gif" width="76" height="19" /></td>
<td><img src="Images/GIF/o_nas.gif" width="76" height="19" /></td>
<td><img src="Images/GIF/kontakt.gif" width="76" height="19" /></td>
</tr>
</table>
</div>
</body>