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;
} |