<div style=layout-flow:vertical-ideographic;>layout-flow:vertical-ideographic;</div>
如果单单旋转90度,没有动态的话
<div style=writing-mode:tb-rl;>或者writing-mode:tb-rl; </div>
否则看:http://www.blueidea.com/bbs/newsdetail.asp?id=417945

解决方案 »

  1.   

    <DIV ID="oDiv" STYLE="position:absolute; left:270px;" >
            An Image - >    
            <IMG SRC='http://lucky.myrice.com/back.jpg' />
        </DIV>
    <BUTTON onclick="oDiv.style.filter='progid:DXImageTransform.Microsoft.BasicImage(rotation=0)'">
        Rotate 0 degrees</BUTTON><BR/>
    <BUTTON onclick="oDiv.style.filter='progid:DXImageTransform.Microsoft.BasicImage(rotation=1)'">
        Rotate 90 degrees</BUTTON><BR/>
    <BUTTON onclick="oDiv.style.filter='progid:DXImageTransform.Microsoft.BasicImage(rotation=2)'">
        Rotate 180 degrees</BUTTON><BR/>
    <BUTTON onclick="oDiv.style.filter='progid:DXImageTransform.Microsoft.BasicImage(rotation=3)'">
        Rotate 270 degrees</BUTTON><BR/>
    <BUTTON onclick="oDiv.style.filter=''">Clear Filter</BUTTON><BR/>