Working with CSS3 property transform: scale, I found interesting issue. I wanted to make a little zoom effect for pictures. But when I used for the parent div <
transform: scale
Both ways of solving this issuer worked fine:
Add the following line to a parent wrapper (z-index: 0 is not necessary for the image itself): position: relative; z-index: 10
z-index: 0
position: relative; z-index: 10
Or add transform: translateZ(0); to a parent wrapper (with the corresponding prefixes for better browser support)
transform: translateZ(0);