实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
img.normal
6
{
7
height:auto;
8
}
9
img.big
10
{
11
height:120px;
12
}
13
p.ex
14
{
15
height:100px;
16
width:100px;
17
}
18
</style>
19
</head>
20
21
<body>
22
<img class="normal" src="/upload/love/css.gif" width="95" height="84" /><br>
23
<img class="big" src="/upload/love/css.gif" width="95" height="84" />
24
<p class="ex">The height and width of this paragraph is 100px.</p>
25
<p>This is some text in a paragraph. This is some text in a paragraph.
26
This is some text in a paragraph. This is some text in a paragraph.
27
This is some text in a paragraph. This is some text in a paragraph.</p>
28
</body>
29
</html>
30