La posicion tienes que definirla lo primero:
Código CSS:
Ver original<style>
body{
background-color: #CCC;
}
#blanco{
position: absolute;
background: white;
width: 800px;
height: 100%;
}
.izquierda {
position: absolute;
background: orange;
width: 20px;
height: 100%;
float: left;
}
.derecha {
position: relative;
background: orange;
width: 20px;
height: 100%;
float: right;
</style>