I have this code:
<!DOCTYPE html>
<html>
<head>
<title>Figuras em tabelas</title>
</head>
<body>
<h1 align="center">Montando figuras com tabelas - 1</h1>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td rowspan="3"><img src="img/verde.gif"></td>
<td colspan="2"><img src="img/amarelo.gif"></td>
<td rowspan="2"><img src="img/azul.gif"></td>
</tr>
<tr>
<td rowspan="2"><img src="img/azul.gif"></td>
<td><img src="img/vermelho.gif"></td>
</tr>
<tr>
<td><img src="img/vermelho.gif"></td>
<td><img src="img/cinza.gif"></td>
</tr>
</table>
</body>
</html>
that is generating this layout:
Howcanyouremovethesespacesbetweenimages?I'vetriedresizingthembutit'snouse.
Separateimages: