jquery - image with webKit transform appeat under the next div -
i trying resolve issue shown in image clarification. have small thumbnail webkit transform. when hover, size bigger. wehn use accordion, part of enlarged image appears under accordion div. tried z-index, did not work. appreciate idea on tag attribute or jquery function may resolve.
thank mike
the z-index
property affects elements have position value other static (the default). try adding position: relative
thumbnail element.
.smallimages { position: relative; z-index: 1; }
Comments
Post a Comment