ho una thumbnail contenuta in una div
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */
}
praticamente appena mi posiziono con il mouse mi si ingrandisce l'immagine , l'immagine ingrandita non esce fuori dal div che la contiene come posso uscire fuori dal divbox......?
sto provando in tutti i modi senza riuscirci vi mostro anche il codice sottostante
<div style="width: 136px;" class="caption">
<div class="thumbnail">
<a href="link#thumb">
<table width="136" border="0" cellspacing="0" cellpadding="0"><tr>
<td WIDTH="131" ALIGN="LEFT" bgcolor="FFFFFF"><span2>1</span2><span1>TESTO....</span1>[img]FOTO PICCOLA[/img]
<span>FOTOINGRANDITA CON PASSAGGIO MOUSE/>
DESCRIZIONE DA AGGIUNGERE</span></a>
</td>
<td WIDTH="5" ALIGN="LEFT"></td>
</tr></table>
</a>
</div>
</div>
Ciao grazie