Ver Mensaje Individual
  #7 (permalink)  
Antiguo 03/09/2006, 03:15
Avatar de Sals
Sals
 
Fecha de Ingreso: septiembre-2006
Ubicación: España
Mensajes: 12
Antigüedad: 17 años, 8 meses
Puntos: 0
El mismo codigo:
Cita:
<TABLE WIDTH=100% BORDER=1 CELLPADDING=4 CELLSPACING=3 STYLE="page-break-before: always">
<COL WIDTH=128*>
<COL WIDTH=128*>
<TR VALIGN=TOP>
<TD ROWSPAN=2 WIDTH=50%>
<P><BR>
</P>
</TD>
<TD WIDTH=50%>
<P><BR>
</P>
</TD>
</TR>
<TR>
<TD WIDTH=50% VALIGN=TOP>
<P><BR>
</P>
</TD>
</TR>
</TABLE>

Este código nos muestra 3 celdas que encajan perfectamente por que la celda grande tiene "rowspan=2", para que encajen las otras dos.

<TABLE WIDTH=100% BORDER=1 CELLPADDING=4 CELLSPACING=3 STYLE="page-break-before: always">
<COL WIDTH=128*>
<COL WIDTH=128*>
<TR VALIGN=TOP>
<TD WIDTH=50%>
<P><BR>
</P>
</TD>
<TD WIDTH=50%>
<P><BR>
</P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=50%>
<P><BR>
</P>
</TD>
<TD></TD>
</TR>
</TABLE>