One of the elements on my webpage is a table structured like this:
<table>
<tr>
<td>
<img src="images/End_051.png" />
</td>
<td>
<img src="images/End_051.png" />
</td>
</tr>
<tr>
<td>
<img src="images/End_051.png" />
</td>
<td>
<img src="images/End_051.png" />
</td>
</tr>
</table>
However, I encountered an issue where the images collapse on top of each other when I use CSS to set the td
position as absolute. Here is a visual of how it looks:
Do you have any suggestions on how to fix this problem?