les muestro
HTML:
Cita:
<body>
<div id="blanco">
<div class="izquierda"></div>
<div class="derecha"></div>
</div>
</body>
<div id="blanco">
<div class="izquierda"></div>
<div class="derecha"></div>
</div>
</body>
CSS
Cita:
body{
margin:0px;
background-color:#CCC;
}
#blanco
{
background:white;
width:800px;
height:100%;
position:absolute;
}
.izquierda
{
background:orange;
width:20px;
height:100%;
float:left;
position:absolute;
}
.derecha
{
background:orange;
width:20px;
height:100%;
float:right;
position:relative;
}
margin:0px;
background-color:#CCC;
}
#blanco
{
background:white;
width:800px;
height:100%;
position:absolute;
}
.izquierda
{
background:orange;
width:20px;
height:100%;
float:left;
position:absolute;
}
.derecha
{
background:orange;
width:20px;
height:100%;
float:right;
position:relative;
}