30 lines
445 B
CSS
Raw Normal View History

2011-01-05 09:59:49 +00:00
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 {
}