28172 sujets

CSS et mise en forme, CSS3

Bonjour, j'ai le CSS suivant pour trois DIV:

.DIVbanfix {
	position: fixed;
	top: 0px;
	z-index: 100;
}

.DIVbanfixSous {
	position: fixed;
	top: 0px;
	z-index: 0;
}

.DIVcorps {
	z-index: 50;
}


Je voudrais que le premier CSS maintienne le DIV en premier plans, les troisième CSS en deuxième plan, et le deuxième CSS en troisième plan, mais ça ne fonctionne pas correctement, que puis-je faire ?
Merci, donc après étude de ce liens j'ai ceci:

.DIVbanfixSous, .DIVcorps_Milieux, .DIVbanfix {
    position: absolute;	
}
.DIVbanfix {
	position: fixed;
	top: 0;
}
.DIVbanfixSous {
	position: fixed;
	top: 0;
	z-index: 1;
}
.DIVcorps_Milieux {
	width:800px;
}


Pour la profondeur des DIVs c'est parfait Smiley biggrin
Modifié par lunnatcik (14 Dec 2013 - 10:21)