css - How to do translate3d type effect for older versions of IE -


on site i'm working on, have css uses translate3d style accordingly. example:

style="transform: translate3d(-133px, -8px, 0px);" 

however, need address in older versions of ie. other ways can done? there way use filters or else make happen?

maybe negative margins help: margin-left: -133px; margin-top: -8px; might depend on parent element styles.


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -