0

I have a site that rotates an image using either the CSS3 transforms, or the filter css command. When I go to print the page in IE8, the image does not print out rotated.

Anyway to make that happen?

2 Answers2

0

css 3 transforms are not supported by earlier ie. You would need to use javacript to somewhat replicate the effect

Shivang
  • 186
  • 2
  • 11
0

I had same issue with IE8 and got fixed by setting media attribute to style tag as follows.

<style type="text/css" media="print">
Sravan
  • 69
  • 3