1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
| #main_body
{
width:100%;
height:100% !Important;
height:1%;
height:1000px;
background-color:#FFFFFF;
}
/* Menu Gauche + Centre */
#content_centre
{
float:left;
width:80%; /* Si je n'ai pas de menu droit, je positionne ici à 100% */
height:100%;
background-color:#FFFFFF;
}
/* Menu Droit */
#content_droit
{
float:right;
width:20%;
height:100%;
background-color:#FFFFFF;
}
/* Menu gauche */
#content_centre_gauche
{
float:left;
width:25%; /* Si je n'ai pas de menu droit, je positionne ici à 100% */
height:100%;
background-color:#FFFFFF;
}
/* Corps */
#content_centre_droit
{
float:left;
width:75%; /* Si je n'ai pas de menu droit, je positionne ici à 100% */
height:100%;
background-color:#FFFFFF;
} |
Partager