Bonjour,
j'ai un menu graphique qui s'affiche bien sous FF mais les images n'apparaîssent pas sous IE.
http://creatif-web.be/anaska/projet/accueil.php
Je me semande d'ou sa vient la css :
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
 
body {
margin:0;
padding:0;
/* background-image:url(../../fond_bleue.png); */
}
.bleue_fond {
float:right;
margin-right:200px;
width:618px;
height:399px;
background-image:url();
color:#009966;
}
div.precharge {
position:absolute;
top:320px;
left:0;
}
a.image0 {
display:block;
height:183px;
width:194px;
background-image:url(http://creatif-web.be/anaska/projet/img/boule_0.gif) ;
background-repeat:no-repeat;
}
a.image0 span {
display:none;
}
a.image0:hover {
background-image:url(http://creatif-web.be/anaska/projet/img/boule_hover_0.gif);
background-repeat:no-repeat;
}
a.image1 {
display:block;
height:183px;
width:194px;
background-image:url(http://creatif-web.be/anaska/projet/img/boule_1.gif);
}
a.image1 span {
display:none;
}
a.image1:hover {
background-image:url(http://creatif-web.be/anaska/projet/img/boule_hover_1.gif);
background-repeat:no-repeat;
}
a.image2 {
display:block;
height:183px;
width:194px;
background-image:url(http://creatif-web.be/anaska/projet/img/boule_2.gif);
}
a.image2 span {
display:none;
}
a.image2:hover {
background-image:url(http://creatif-web.be/anaska/projet/img/boule_hover_2.gif);
background-repeat:no-repeat;
}
a.image3 {
display:block;
height:183px;
width:194px;
background-image:url(http://creatif-web.be/anaska/projet/img/boule_3.gif);
}
a.image3 span {
display:none;
}
a.image3:hover {
background-image:url(http://creatif-web.be/anaska/projet/img/boule_hover_3.gif);
background-repeat:no-repeat;
}
Merci