Bonjour,
Mon probleme est le suivant :
j'ai un <div> dans lequel il y a un <span> contenant un tableau.
Le span est invisible par defaut il ne s'affiche que si le curseur de la souris est sur le <div> pour cela j'ai ajouté le css suivant :
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
 
div.info {
	position:relative;
	z-index:10;
	color:#000000;
	font-family:Arial, Helvetica, sans-serif;
	width: 10;
	text-align: center;
 
  }
div.info:hover {
      z-index:20; 
  }
div.info span {
      display:none;
      z-index:20;
  }
div.info:hover span { 
      display:block;
      position: absolute;
      top:-29px; 
      left:22px; 
      padding-left:25px;
      padding-top:24px; 
      padding-bottom:5px;
      padding-right:8px;
      width:205px;
      height:45px;
      font-family:Arial, Helvetica, sans-serif;
      font-weight:normal;
      font-style:italic;
      font-size:10px;
      color:#999999;
      text-decoration:none;
      text-align:justify;
}
et dans la page html j'ai
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
 
<div class="info" name="id">
       <span>
	   <div id="propriete"> 
               Ici il y a mon tableau
           </div>
	</span>
</div>
Le probleme c'est que le span ne s'affiche pas sur IE7 et s'affiche avec firefox
comment je pourrais corriger ca ?
Merci,