30 lines
445 B
CSS
30 lines
445 B
CSS
|
body {
|
||
|
background-color: #BEBEBE;
|
||
|
font:11px Arial,Helvetica,sans-serif;
|
||
|
margin: 0; /* pour éviter les marges */
|
||
|
text-align: center; /* pour corriger le bug de centrage IE */
|
||
|
}
|
||
|
|
||
|
#global {
|
||
|
position: relative; /* on positionne le conteneur */
|
||
|
width:800px;
|
||
|
margin:0 auto;
|
||
|
text-align:left;
|
||
|
}
|
||
|
|
||
|
#header {
|
||
|
float:left;
|
||
|
width:200px;
|
||
|
margin:0;
|
||
|
}
|
||
|
|
||
|
#content {
|
||
|
float:left;
|
||
|
width:600px;
|
||
|
padding:0;
|
||
|
margin:5px 0 0 0;
|
||
|
}
|
||
|
|
||
|
#footer {
|
||
|
|
||
|
}
|