I am facing an issue with a simple table that I have created, similar to the one below:
<table style='border-collapse: collapse;'>
<tr>
<td style='border: 1px solid blue;'>
<div style='background-color: yellow;'>
test
</div>
<div style='background-color: green;'>
test
</div>
</td>
<td style='background-color: red; border: 1px solid blue;'>
test
</td>
</tr>
</table>
This setup results in unwanted space between the yellow and green divs and the table border. Is there a way to remove this space?