I'm struggling to get a CSS 3D transform to function properly in IE10. The issue arises because IE10 lacks support for the preserve-3d property.
According to Microsoft, there is a workaround available. They suggest applying the transform(s) of the parent element(s) to the child element(s). However, this approach has not been effective for me.
I've conducted extensive research in hopes of finding a solution. While there are a few suggested methods that claim to enable 3D transforms, they typically involve basic animations like a card flip. As far as I'm aware, these simpler animations shouldn't actually require preserve-3d functionality.
My main goal is to get the following to work in IE10:
http://codepen.io/Joe_Temp/full/opFKu
Is there anyone who knows if or how this can be achieved?