CSS backface-visibility issue [SOLVED]

Thanks @MiguelR, you lead me in the right direction.

z-index was the right line of thinking, but with 3d, its translateZ() :man_facepalming: So I needed to add translateZ(1px); to the back.

I am not sure I needed to bother with the prefix, but I will be absolute here :laughing:

.flip-card-back {
  transform: rotateY(180deg) translateZ(1px);
  -webkit-transform: rotateY(180deg) translateZ(1px);
  -moz-transform: rotateY(180deg) translateZ(1px); 
}

That took way to much of my time :rofl: :rofl:

Handy reference for anybody who is interested…

3 Likes