I have this stylesheet
.rotate div img
{
-webkit-transform: translate(-18cm, 2cm) rotate(-90deg); /* WebKit */
-webkit-transform-origin: top right;
-ms-transform
does not exist in IE10+. IE8 and older have no support for CSS transforms, IE9 uses only -ms-transform
, and IE10 and newer use only the unprefixed transform
.
See http://caniuse.com/#feat=transforms2d for more info if needed.
No need for fancy prefixes, just use normal transform to target MS IE!
I has same issue but resolved by setting up media attribute to style tag as follows
<style type="text/css" media="print">