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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| #wrapper
{
margin-left:auto;
margin-right:auto;
margin-top:10px;
width:800px;
background-image:url(../images/site_bg.gif);
text-align:left;
display:table;
}
#header {
background-image:url(../images/ban_haut.png);
background-repeat:no-repeat;
height:239px;
width: 800px;
display:table;
}
#content {
background-image:url(../images/milieu.png);
float:left;
width:587px;
background-color:#6699CC;
margin-left:0px;
margin-top:0px;
height:100%;
display:table;
}
#right {
background-image:url(../images/droite.png);
float:left;
width:42px;
background-color:#6699CC;
margin-left:0px;
margin-top:0px;
height:100%;
display: table-cell;
}
#left {
float:left;
width:160px;
text-align:center;
margin-left:0px;
margin-top:0px;
background-image:url(../images/gauche.png);
background-repeat:repeat;
font-size:13px;
font-weight:bold;
height:100%;
float:left;
display: table-cell;
}
#footer {
background-image:url(../images/bas.png);
width:790px;
height:99px;
text-align:center;
background-repeat:repeat;
margin-left:0px;
margin-top:0px;
text-align: center;
color:#CCCCCC;
font-size:12px;
font-weight:bold;
clear:both;
display:table;
} |