Does anyone know how I would detect transform: translate3d(x,y,z) support is available?
transform: translate3d(x,y,z)
My issue is that I want to use translate3d across b
translate3d
You can try CCS3 @supports:
@supports (transform: translate3d) { div { transform : translate3d(20px,0,0); } } @supports not (transform: translate3d) { div { transform: translate(20px,0); } }
Can I use @support