Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/08/2012, 17:36
Avatar de flashmax
flashmax
 
Fecha de Ingreso: julio-2012
Ubicación: Bs.As. Argentina
Mensajes: 507
Antigüedad: 11 años, 9 meses
Puntos: 86
Respuesta: Columnas laterales, height 100%

Prueba así haber si funciona le agregue colores para ver como alinea.


Código:
*{
    margin:0;
    padding:0;
}
.contenedor{
	position: absolute;
	width: 100%;
	height: 100%;
	background-color:#EEE;
}
.izquierda{
	left:0 px;
	width: 102px;
	height: 100%;
	float: left;
	background: url("columna.jpg") repeat-y;
	background-color:#360;
}
.derecha{
	right:0px;
	width: 103px;
	height: 100%;
	float: right;
	background: url("columna.jpg") repeat-y;
	background-color:#900;
}
.clear{
	clear:both;
	
}