image with webKit transform appeat under the next div

38 Views Asked by At

I trying to resolve this issue shown in the image for clarification. I have a small thumbnail with webkit transform. when I hover, The size get bigger. Wehn I use accordion, part of the enlarged image appears under the accordion div. I tried z-index, but it did not work. I would greatly appreciate any idea on what tag attribute or jquery function that may help resolve.

thank you Mike

enter image description here

1

There are 1 best solutions below

0
On BEST ANSWER

The z-index property only affects elements that have a position value other than static (the default). Try adding position: relative to the thumbnail element.

.smallImages {
    position: relative;
    z-index: 1;
}