x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
html {
7
height: 100%;
8
}
9
10
body {
11
height: 100%;
12
}
13
14
img.normal {
15
height: auto;
16
}
17
18
img.big {
19
height: 50%;
20
}
21
22
img.small {
23
height: 10%;
24
}
25
</style>
26
</head>
27
28
<body>
29
<img class="normal" src="/examples/logocss.gif" width="95" height="84" /><br>
30
<img class="big" src="/examples/logocss.gif" width="95" height="84" /><br>
31
<img class="small" src="/examples/logocss.gif" width="95" height="84" />
32
</body>
33
</html>