07/03/2008, 15:10
|
| | | Fecha de Ingreso: abril-2007 Ubicación: Vivo en Lima - Perú
Mensajes: 61
Antigüedad: 17 años, 6 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>
|