实例代码“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:matrix(0.866,0.5,-0.5,0.866,0,0);
15
-ms-transform:matrix(0.866,0.5,-0.5,0.866,0,0); /* IE 9 */
16
-webkit-transform:matrix(0.866,0.5,-0.5,0.866,0,0); /* Safari and Chrome */
17
}
18
</style>
19
</head>
20
<body>
21
22
<div>Hello. This is a DIV element.</div>
23
24
<div id="div2">Hello. This is a DIV element.</div>
25
26
</body>
27
</html>
28