Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/05/2006, 17:17
safe
 
Fecha de Ingreso: enero-2003
Ubicación: Córdoba, Argentina
Mensajes: 1.047
Antigüedad: 21 años, 2 meses
Puntos: 10
te dejo un ejemplo muy simple pero bastante figurativo:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
	<title>Untitled Document</title>
	<style type="text/css">
	<!--
	html, body {
		height:100%;
	}
	
	div {
		float:left;
		width: 33%;
		height: 70%;
		border: 1px solid #000;
	}
	
	div div {
		float:left;
		width: 32%;
	}
	-->
	</style>
</head>
<body>
<div>columna 1</div>
	<div>
		<div>columna 2 - a</div>
		<div>columna 2 - b</div>
		<div>columna 2 - c</div>
	</div>
	<div>columna 3</div>
</body>
</html>
__________________
oohh... quisiera ser godines!!!