实例代码“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
margin:100px;
15
transform:scale(2,4);
16
-ms-transform:scale(2,4); /* IE 9 */
17
-webkit-transform:scale(2,4); /* Safari and Chrome */
18
}
19
</style>
20
</head>
21
<body>
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