j'ai un système d'infobulles qui marche bien en IE et pas en ffx ou chrome ...
j'utilise sûrement un "truc" css propre à IE mais lequel ?

Merci pour votre aide.


La classe 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
<STYLE>
a.info{
    position:relative; 
    z-index:24; background-color:#ccc;
    color:#000;
    text-decoration:none}
 
a.info:hover{z-index:25; background-color:#ff0}
 
a.info span{display: none}
 
a.info:hover span{ 
/*le contenu de la balise span ne 
sera visible que pour l'état a:hover */
 display:inline; 
 position:absolute;
 
 
    top:2em; left:2em; width:15em;
    border:1px solid #6699cc;
    background-color:#eeeeee; color:#6699cc;
    text-align: justify;
    font-weight:none;
    padding:1px;
 
    }
</STYLE>
Le code html :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
<a class="info" href="#" > TEXTE VISIBLE<span>texte de l'infobulle</span></a>