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
|
.info{position:relative; /*this is the key*/
color:#000000;
text-decoration:none;
}
a.info:hover{
display:block; z-index:10;/
}
a.info span {display: none; z-index:10;}
a.info:hover span{/*the span will display just on :hover state*/
display:block;
position:absolute;
padding:5px;
top:-5em;
left:2em;
width:15em;
border:0px outset #0cf;
color:#000;
text-align: center;
font-family:verdana;
font-size:11px;
z-index:10;
}
.InfoBulleDirection{
position:absolute;
left:233px;
top:113px;
width:217px;
height:65px;
border-width:0px;
border-style:solid;
background:transparent;
cursor:help;
/*Ecriture*/
font-size:11px;
font-family:arial;
font-weight:bold;
font-color:#000000;
text-align: center;
} |
Partager