Testant un site sous différents navigateurs, je me retrouve confronté avec un souci avec netscape, firefox, opera.
Ma page est divisée en différents <div>
le conteneur principal:
CITATION
#cont {
position: absolute;
width: 100%;
}
position: absolute;
width: 100%;
}
le header:
CITATION
#head {
background-image: url('commun/head_1.gif');
background-repeat: no-repeat;
background-position: left;
height: 100px;
background-image: url('commun/head_1.gif');
background-repeat: no-repeat;
background-position: left;
height: 100px;
le gauche:
CITATION
#left {
position: absolute;
left:0;
width: 150px;
position: absolute;
left:0;
width: 150px;
le droit:
CITATION
#right {
position: absolute;
right:0;
width: 150px;
}
position: absolute;
right:0;
width: 150px;
}
le centre:
CITATION
#cent {
height: 400px;
margin-left: 150px;
margin-right: 150px;
background-color: #000066;
}
height: 400px;
margin-left: 150px;
margin-right: 150px;
background-color: #000066;
}
et le footer:
CITATION
#foot {
height: 50px;
}
height: 50px;
}
Sous IE6, le footer est repoussé vers le bas, lors le <div> central s'agrandit.
Pas sous les autres navigateurs.
Y-a-t-il une solution ?
xpatval