28172 sujets

CSS et mise en forme, CSS3

Bonjour, j'ai un CSS sensé fixé un DIV en haut puis un autre bas, mais les deux reste fixé en haut:

.DIVbanHautFixe {
	position: fixed;
	width: 100%;
	height: 103px;
	background-image: url(imgs/Web_Design_2_ban_1.png);
	top: 0;
	left: 0;
	z-index: 1;
}
.DIVbanBasFixe {
	position: fixed;
	width: 100%;
	height: 103px;
	background-image: url(imgs/Web_Design_2_ban_bas_1.png);
	bottom: o;
	left: 0;
	clear: both;
}


Sauriez vous me dire ce qui ne va pas dans mon code ?