Pour que la colonne blanche prenne toute la hauteur, voici le CSS modifié:
Code : Tout sélectionner
body {
color: black;
background: blue;
padding: 0;
margin: 0;
}
#conteneur {
width: 600px;
margin: 0;
position: absolute;
}
#colonne-jaune {
color: black;
background: yellow;
padding: 0 0 0 200px;
position: absolute;
}
#colonne-blanche {
color: black;
background: white;
width: 200px;
float: left;
position: absolute;
top: 0;
bottom: 0;
left: 0;
}
#image-verte {
color: black;
background: green;
width: 100px;
height: 50px;
padding: 0;
margin: 0;
position: absolute;
bottom: 0;
}