My goal is to have a full-size image appear when hovering over the thumbnail using overlays and overflow:hidden & visible techniques.
While this setup works well in Firefox and IE, it seems to create issues in Chrome and Safari. You can experience this problem by visiting our page at Webkit artefact
Here is the CSS I am currently utilizing:
.img-thumb
{
position:relative;
height:60px;
width:60px;
overflow:hidden;
padding:5px;
font-family:Comic Sans MS, cursive, sans-serif;
font-size:14px;
}
.img-full
{
position:absolute;
display:none;
top:0px;
left:0px;
}
.img-thumb:hover .img-full
{
display:block;
z-index:10;
}
.img-thumb:hover
{
overflow:visible;
}