Last Updated: February 25, 2016
·
933
· soliah

Rotation in IE8+

Rotate an element using the following IE only style:

filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);

Don't apply this to an anchor tag because when the tag is clicked, IE will place a dotted border around it that will not be rotated. Instead use a span with:

cursor: pointer;

to simulate anchor behaviour.