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
| div {
border: 0px solid #999999;
float:center;
}
#content{
display:block;
}
#header{
display:block;
background:#000;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
behavior: url(border-radius.htc);
}
#pied_page{
display:block;
background:#000;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
behavior: url(border-radius.htc);
}
#wrapper{
margin: 0 auto;
width: 1100px;
}
#left{
display:block;
float:left;
width:200px;
background-color: #228888;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
behavior: url(border-radius.htc);
}
#right{
display:block;
float:right;
width:200px;
background-color:#228888;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
behavior: url(border-radius.htc);
}
#center {
border:0;
float:center;
width:670px;
margin: auto 212 auto 212;
background-color:#dddddd;
} |
Partager