x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
img.normal {
7
height: auto;
8
}
9
10
img.big {
11
height: 120px;
12
}
13
14
p.ex {
15
height: 100px;
16
width: 100px;
17
}
18
</style>
19
</head>
20
21
<body>
22
<img class="normal" src="/examples/logocss.gif" width="95" height="84" /><br>
23
<img class="big" src="/examples/logocss.gif" width="95" height="84" />
24
<p class="ex">这个段落的高和宽是 100px.</p>
25
<p>这是段落中的一些文本。这是段落中的一些文本。 这是段落中的一些文本。这是段落中的一些文本。 这是段落中的一些文本。这是段落中的一些文本.
26
</p>
27
</body>
28
</html>