Bonsoir,

Je n'arrive pas à centrer l'affichage des div sous IE.

voilà le CSS que j'utilise et qui fonctionne sous firefox.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
 
body{
 
	background-image: url("../ressources/body.jpg");
	width:760px;
	margin:auto;
  	opacity:0.6; /* CSS3 standard */
}
 
div.banner{
 
	height:100px;
	width:760px;
	background-position:10px;
	background-image: url("../ressources/banner.jpg");	
	background-repeat:no-repeat;
	background-color:white;
	border:silver solid 2px;
}
 
div.body{
 
		width:760px;
		margin-top:20px;
		background-color: white;
		border:	silver 2px solid;
}
div.footer{
 
	height:110px;
	width:760px;
	text-align:center;
	margin-top:20px;
	background-position:right;
	background-image: url("../ressources/footer.jpg");
	background-color:white;
	background-repeat: no-repeat;
	border:silver 2px solid;
}
Merci d'avance pour toute aide

Bien à vous,

Leole