我要再問一個問題!CSS旋轉IE7和8
所以,CSS旋轉工作在IE9,但得到旋轉工作在以前的版本將是我的死亡!
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
這行代碼將元素旋轉了90度,但是與其他瀏覽器的元素大致相同。如果元素太靠近頁面,可能會將其旋轉到外部。微軟的IE文檔並沒有說清楚如何設置轉換源。
我完整的代碼:
#quick {
position:fixed;
top:250px;
left:-158px;
}
#qmenu-wrapper {
background-image: url(../images/img_08.png);
background-repeat:repeat-x;
height: 35px;
width:350px;
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-o-transform: rotate(90deg);
-ms-transform:rotate(90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
有什麼我們可以做,使IE 7和8手柄旋轉以同樣的方式爲9?
謝謝。
我!
你可能要考慮嘗試jQuery的旋轉:http://code.google.com/p/jqueryrotate/的 – aroth 2012-03-08 02:43:05
可能重複[CSS旋轉在IE屬性(http://stackoverflow.com/questions/4617220/css-rotate-property-in-ie) – Liam 2014-03-13 13:35:05