I have two cards on the screen and when one of them flips, the backside ends up behind the other card in Safari. The same is not true for Chrome. And in Firefox, it temporarily goes behind the other card but then pops forward. Any help would be appreciated!
Drag the card and then, click the black bar to flip it.
Here's the html...
<div id="flipStage">
<div class="card" id="bsg">
<div class="front" id="bsgFront"></div>
<div class="back" id="bsgBack" style="color: green;">f</div>
<div class="flipButton"></div>
<div class="handle"></div>
</div>
<div class="card" id="vger">
<div class="front" id="vgerFront"></div>
<div class="back" id="vgerBack" style="color: green;">f</div>
<div class="flipButton"></div>
<div class="handle"></div>
</div>
</div>
Here's a fiddle with CSS and JS that works in Chrome, sorta in Firefox and not in Safari