Ver Mensaje Individual
  #13 (permalink)  
Antiguo 23/10/2005, 10:08
Avatar de programeitor
programeitor
 
Fecha de Ingreso: febrero-2005
Mensajes: 994
Antigüedad: 19 años, 2 meses
Puntos: 9
columnas de la misma altura

.


Mira que facil:

<!DOCTYPE HTML PUBLIC>
<html><head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<title>
columnas de la misma altura
</title><style>
html{overflow-x:hidden;}
body{overflow-y:hidden;margin:0px auto;width:100%;background:black;}
#
todo{border-collapse:collapse;width:100%;}
#
izq,#der{border:1px solid black;vertical-align:top;padding:5px;text-align:justify;}
#
izq{width:20%;background:gray;}
#
der{background:silver;}
</style></head><body>
<table id="todo">
<tr>
<td id="izq">
izquierda
</td>
<td id="der">
derecha
<br>
derecha
</td>
</tr>
</table>
</body></html>
<!-- programeitor 2005, [email protected] -->


.