Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/04/2009, 11:43
Avatar de talmente
talmente
 
Fecha de Ingreso: noviembre-2007
Mensajes: 233
Antigüedad: 16 años, 5 meses
Puntos: 4
Respuesta: Cambiar estructura HTML en estructura de 3 columnas

Hola, te paso un codigo con el que puedes empezar:

Código:
  #central{
	background: #999999;
	width: 54%;
	float: left;
}

   
       
  
      #left{
	float: left;
	width: 200px;
	background: #0033CC;   
      }
  
       
 
      #right{
	float:right;
	width:302px;
	background: #009966;
      }

HTML:

<div id="left">
menú izquierda
</div>

<div id="central">
Contenido
</div>   

<div id="right">
menú derecha
</div>