Bonjour,

J'ai un problème concernant ie6 et l'attribut min-height de css.
Je suis obligé de l'utiliser et je ne sais pas quoi faire.
Le footer de ma page est décalé vers le haut : http://stoquert.maisons-barberousse....le_mb_firefox/
(seulement sous ie6)

Comment puis-je éviter ce problème ?
Encore merci

le css avec les éléments concernés :

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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
 
html, body{
margin:0;
padding:0;
background-color:#CAACCA;
 
}
 
div#conteneur {
position:relative;
width: 940px;
margin-left:auto;
margin-right:auto;
margin-top:20px;
margin-bottom:20px;
background-color:#E9DDE9;
background-image:url(images/coin_haut_gauche.png);
background-position:top left;
background-repeat:no-repeat;
 
 
}
 
 
div#headerconteneur {
	position:relative;	
	overflow:hidden;
	height: 220px;
	background-image:url(images/coin_haut_droit.png);
	background-position:top right;	
	background-repeat:no-repeat;
	overflow:hidden;
	width:100%;
 
}
div#header{
position:relative;
background-image:url(images/Banniere.png);
background-repeat:no-repeat;
width:910px;
height:205px;
margin:auto;
margin-top:15px;
}
 
div#contenu {
position:relative;
min-height:480px;
margin-top:15px;
 
}
div#corps{
height:auto;
min-height:480px;
margin-left:145px;
margin-right:10px;
margin-bottom:20px;
}
 
div#menu
{
width:120px;
height:300px;
float:left;
margin-left:15px;
}
div#logos{
text-align:center;
}
a img{
border:none;
}
div#footerconteneur{
height:30px;
position:relative;
background-image:url(images/coin_bas_gauche.png);
background-position:bottom left;
background-repeat:no-repeat;
}
div#footer{
position:relative;
	background-image:url(images/coin_bas_droit.png);
	background-position:bottom right;
	background-repeat:no-repeat;
	width:100%;
	height:100%;
	margin-bottom:0;
	}

Merci d'avance !!