实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
html {height:100%;}
6
body {height:100%;}
7
img.normal {height:auto;}
8
img.big {height:50%;}
9
img.small {height:10%;}
10
</style>
11
</head>
12
13
<body>
14
<img class="normal" src="/upload/love/css.gif" width="95" height="84" /><br>
15
<img class="big" src="/upload/love/css.gif" width="95" height="84" /><br>
16
<img class="small" src="/upload/love/css.gif" width="95" height="84" />
17
</body>
18
</html>
19