实际上我有一个div我正在使用
旋转它-moz-transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
在firefox chrome和opera中,如果在页面加载div时出现轻微问题,则在旋转到指定的旋转值后直接显示一段时间
答案 0 :(得分:0)
在IE中为我工作很好:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
#myDiv {
width:200px;
height:100px;
background-color:#000;
-moz-transform: rotate(270deg);
-webkit-transform: rotate(270deg);
-khtml-transform: rotate(270deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
</style>
</head>
<body>
<div id="myDiv"> </div>
</body>
</html>
提供我允许IE允许ActiveX ...