Bonjoru, j' ai utilisé le tuto sur les info-bulles en css, ca donne pas mal sur mozilla, par contre ca ne fonctionne pas du tout sur IE, auriez vosu une parade s' il vous plait?
Mille mercis d' avance!
div.info {
position: relative;
text-decoration: none;
color: #0066FF;
}
div.info span {
display: none;
}
div.info:hover {
background: none; /* correction d'un bug IE */
z-index: 500;
}
div.info:hover span {
display: inline;
position: absolute;
top: 2em;
left: 1em;
background: blue;
text-align: center;
color: white;
padding: 2px;
}
<div class="info">photo<span><img src="photo.gif" /></span></div>
Mille mercis d' avance!