I have an html table in which I place images side by side inside td. How can I get it so that there is no space between each image? By default, all browsers seem to fit in a small space, despite the fact that there were 0 indents and margins on each table element. I do not specify the width on td, so by default it takes the width of the image inside it.
i.e:
<table>
<tr>
<td><img ... /></td> //no space between the td's
<td><img ... /></td>
</tr>
</table>
source
share