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
If you have tested all other options here and nothing worked while this example works on your browser, then please make sure that element corresponding to #card
from the example bellow has overflow:visible
:
<div id="container">
<div class="card">
<div class="front face"></div>
<div class="back face"></div>
</div>
</div>