Ver Mensaje Individual
  #14 (permalink)  
Antiguo 07/03/2008, 15:10
Avatar de josdelaranda
josdelaranda
 
Fecha de Ingreso: abril-2007
Ubicación: Vivo en Lima - Perú
Mensajes: 61
Antigüedad: 16 años, 11 meses
Puntos: 0
Re: Eliminar espacio entre celdas

Prueba con esto:
Código:
<table id="comentario" cellspacing="0" border="0" celpadding="0">
	<tbody>
	<tr>
		<td> ...
		</td>
	</tr>
	<tr>
		<td> ...
		</td>
	</tr>
	<tr style="position: relative; top: -1px;">
		<td>
			<div id="commentcontent">
			<p style="margin: 0;">...</p>
			</div>
		</td>
	</tr>
	</tbody>
</table>