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

enter image description here

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

Popular posts from this blog

PHP DOM loadHTML() method unusual warning -

python - How to create jsonb index using GIN on SQLAlchemy? -

c# - TransactionScope not rolling back although no complete() is called -