Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does IE11 support css 3d transforms fully (preserve-3d)

I am making a css 3d transforms web app, and I would like IE11 to be supported if possible. I know IE10 does not support the preserve-3d value for the transform-style css attribute, but I'm not sure about IE11. I have read some stuff that says that IE11 should support it, but the examples I tried didn't work properly (IE11 on Windows 8.1 here). So, does IE11 fully support css 3d transforms and preserve-3d?

like image 942
markasoftware Avatar asked Oct 20 '13 22:10

markasoftware


1 Answers

According to Can I Use, transform-style: preserve-3d is not supported by Internet Explorer as of version 11.

In the MSDN documentation, you can apparently manually apply the transformations to child elements to emulate the effect.

like image 54
Cory Carter Avatar answered Nov 04 '22 10:11

Cory Carter