Forum Moderators: not2easy
/* IE6-8 Values: 0, 1, 2, 3 for 0, 90, 180 or 270 degress respectively */
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-ms-transform: rotate(90deg); /* Microsoft - Internet Explorer 9 */
-moz-transform: rotate(90deg); /* Mozilla - Firefox 3.5+ */
-o-transform: rotate(90deg); /* Opera 10.5+ */
-webkit-transform: rotate(90deg); /* Chrome, Safari */
transform: rotate(90deg); /* W3C - not really reqd yet */
(I don't think you can do per degree rotation in earlier versions of IE?)
...serve this with a conditional comment just to "IE lte 8" (IE <= 8).
<!--[if lte IE 8]>
<link rel="stylesheet" href="css_ieonly.css" type="text/css">
<![endif]-->
writing-mode: tb-rl;
filter: flipv fliph;
Which should be written as:Just recalling that all other downloads will be delayed until the sheet arrives. Depending on the situation, for only a few lines of code, it may be more efficient (and save hits) to just include the code rather than link out to an external style sheet.
<!--[if lte IE 8]>
<link rel="stylesheet" href="css_ieonly.css" type="text/css">
<![endif]-->