I\'m building a simple example to flip a card using the -webkit-transform: rotateY property.
It was working fine a couple of days ago, but all of a sudd
I had a similar problem with children of such an element when a child had a webkit-transform.
I noted that I had to set the backface visibility on that element as well:
Text
So the solution is to use as well:
#div2 {
-webkit-transform: translate3d(0,0,0);
-webkit-backface-visibility: hidden; /* again */
}