实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div
6
{
7
width:100px;
8
height:75px;
9
background-color:red;
10
border:1px solid black;
11
}
12
div#div2
13
{
14
transform:rotateX(120deg);
15
-webkit-transform:rotateX(120deg); /* Safari and Chrome */
16
}
17
</style>
18
</head>
19
<body>
20
21
<p><b>Note:</b> Internet Explorer 9 (and earlier versions) and Opera does not support the rotateX method.</p>
22
23
<div>Hello. This is a DIV element.</div>
24
25
<div id="div2">Hello. This is a DIV element.</div>
26
27
</body>
28
</html>
29