Home › Forums › CSS › CSS3 transform and z-indexes › Reply To: CSS3 transform and z-indexes
March 6, 2015 at 12:57 am
#197422
Participant
swap all references to preserve-3d with flat… i.e.
transform-style: preserve-3d;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
to
transform-style: flat;
-webkit-transform-style: flat;
-moz-transform-style: flat;
Although not ideal, and might cause other problems, that seems to be the simplest way to respect z-order.