Regardez ce CSS :
<style type="text/css">
html {
overflow: scroll;
}
body {
width: 100%;
background-color: #FFFFFF;
}
#header {
position: fixed;
width: 100%;
height: 15%;
top: 0;
right: 0;
bottom: auto;
left: 10em;
}
#sidebar {
position: absolute;
width: 10em;
height: auto;
top: 0;
right: auto;
bottom: 0px;
left: 0;
background-color: #AD4F09;
}
#main {
position: absolute;
overflow: auto;
width: auto;
height: auto;
top: 15%;
right: 0;
bottom: 0px;
left: 10em;
background-color: #FFCB60;
}
.bandeau {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-image: url(images/bandeau.jpg);
background-repeat: no-repeat;
}
.army {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 50%;
background-image: url(images/army.jpg);
background-repeat: no-repeat;
}
.connect {
position: absolute;
top: 220px;
left: 0px;
width: 99%;
height: 24%;
}
.menu {
position: absolute;
top: 355px;
left: 0px;
width: 99%;
height: 100%;
}
.menuc {
position: absolute;
top: 265px;
left: 0px;
width: 100%;
height: 50%;
}
</style>
Sous FireFox, bon affichage, rien à dire
Sous IE, rien ne s'affichent correctement, les tailles, les couleur de fond...
Pourquoi ?