first see my fiddle code,
On hover
any div, it will flip, after fliping back side text and style
not showing on IE 11
Please check on chrome or Firefox its working fine
first see my fiddle code,
On hover
any div, it will flip, after fliping back side text and style
not showing on IE 11
Please check on chrome or Firefox its working fine
Apply rotation not to the parent but to the front and back panels themselves. For this create a front panel, you have only a back one at the moment:
<div id="one">
<div class="front face">
<h3 class="text">Developer</h3>
<span class="glyphicon glyphicon-eye-open"></span>
</div>
<div class="back face center">
<p>one Back Side</p>
</div>
</div>
Each panel has backface-visibility:hidden
P.S. didn't understand why you need preserve-3d...