He creado una tabla y en cada celda una imagen, he reducido el tamño de stas en porcentajes, pero no se porque al visualizar la tabla me sale muy separadas las imagenes ¿como evito se separe?
Código PHP:
html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="foto1.jpg" width="30%" height="30%"></td>
<td><img src="foto2.jpg" width="30%" height="30%"></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>