I have a container with a background image and a span element with text. IE9, 10, and modern browsers are fine but ie7 and 8 does not rotate the content. It does, however, rotate to container.
I tried posting in jsfiddle but jsfiddle won't run in IE8 (at least when I tried it).
I've tried these:
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
and
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=-0.00000000, M12=1.00000000, M21=-1.00000000, M22=-0.00000000,sizingMethod='auto expand')";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=-0.00000000, M12=1.00000000, M21=-1.00000000, M22=-0.00000000,sizingMethod='auto expand');
Both work in IE9 and 10 but not IE8 and below.