Thomas.WS
jeudi 20 septembre 2007 à 14:59
XHTML :CODE
<div id="header">
</div>
<div id="corps">
<div id="axe_gauche">
</div>
<div id="axe_centre">
</div>
<div id="axe_droit">
</div>
<div style="clear:both;"></div>
</div>
<div id ="footer">
</div>
CSS : CODE
#header
{
width : 1000px;
height : 100px;
margin:auto;
background : #000;
}
#corps
{
width : 1000px;
height : 500px;
margin:auto;
background : #fff;
}
#axe_gauche
{
width : 300px;
height : 500px;
float:left;
background : grey;
}
#axe_centre
{
width : 500px;
height : 500px;
margin-left : 300px;
position : absolute;
background : purple;
}
#axe_centre
{
width : 200px;
height : 500px;
float:right;
background : red;
}
#footer
{
width : 1000px;
height:50px;
margin : auto;
clear : both;
background : pink;
}
A vu de nez en deux minutes.