I am seeking a way to rotate a span text using CSS transform in Internet Explorer 7 and 8 browsers.
<SPAN style="FONT-SIZE: 14px; -ms-transform:rotate(-90deg); FONT-FAMILY: Segoe UI; POSITION: absolute; ZOOM: 1; COLOR: #707070; LEFT: -64px; TOP: 234px; VISIBILITY: visible">Sales Amount in millions(USD)
</SPAN>
The above code will rotate the text in IE9+ and other browsers, but I am looking for a solution to rotate the span text that will also work in IE7 and IE8 browsers.
Filter can be used to support older versions.
How can I implement the filter to rotate the span element?
Thank you,
Siva