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
| body {
margin:0;
}
div#content{
margin:0 auto;
}
.header{
position: absolute;
margin-left: auto;
margin-right: auto;
background-color: #666;
width: 900px;
height: 50px;
}
div#banner{
position: absolute;
top: 50px;
background-color: #999;
width: 900px;
height: 100px;
}
div#div2 {
/*background-image: url(images/concepthorizontal.gif);*/
/*background-repeat: no-repeat;*/
font-family: Verdana, sans-serif;
font-size: small;
text-align: center;
background-color: #EEE;
position: absolute;
top:150px;
width: 450px;
left:450px;
height:500px;
color: black;
}
div#div1 {
/*background-image: url(images/concepthorizontal.gif);*/
/*background-repeat: no-repeat;*/
position: absolute;
font-family: Verdana, sans-serif;
font-size: small;
text-align: center;
background-color: #AAA;
width: 450px;
height:500px;
top: 150px;
color: black;
}
.footer{
position: absolute;
font-family: Verdana, sans-serif;
font-size: small;
text-align: center;
color: white;
background-color: #555;
width: 900px;
height: 20px;
top: 650px;
} |
Partager