Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS CSS3 transform and z-indexes Reply To: CSS3 transform and z-indexes

#197422
captain lardnicus
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.