I'm using Modernizr for feature detection and TransformJS for animating CSS3D properties. TransformJS uses the CSS matrix for styling translate, scale and rotate properties and it works fine, even in IE since it supports matrix transformations via the filter property.
My problem is that Opera only supports the CSS matrix since Opera Presto 2.5 which seems to be in alpha/beta right now. Is there a way to detect if a browser is capable of CSS matrix transformations?
Any help would be kindly appreciated. :)
edit: Okay, I was wrong :) Opera does have support for CSS matrix, but the values have to be unitless. But still it would be interesting to test for it.