Dans le code suivant :
//-----------------------------------------------------------------------------
<style type="text/css">
.thumbnail{
position: relative;
z-index: 0;
}
.thumbnail:hover{
background-color: transparent;
z-index: 50;
}
.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: 0000FF;
padding: 0px;
left: -1000px;
border: 0px dashed red;
visibility: hidden;
color: black;
text-decoration: none;
}
.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 0px;
}
.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -310px;
left: -160px; /*position where enlarged image should offset horizontally */
}
</style>
//-----------------------------------------------------------------------------
Comment faire que dans la partie ".thumbnail:hover span{", on puisse afficher l'image NON PAS DE FACON RELATIVE à l'objet qui le demande mais en coordonnées absolues du DOCUMENT / ou d'un autre objet ?
Par avance MERCI !
==> Suggestion créer un forum / ongelt sur HTML et CSS.
BlueMan