blob: 4ed3a304d069693381adec514c109249e2ebd847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Vertical Align example</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
* {margin:0;padding:0}
</style>
</head>
<body>
<hr>
<h1>Vertical align
<img style="vertical-align:top;" src="dillo1.png" />
<img style="vertical-align:top;" src="dillo2.png" />
<img style="vertical-align:top;" src="dillo3.png" />
- top</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:middle;" src="dillo1.png" />
<img style="vertical-align:middle;" src="dillo2.png" />
<img style="vertical-align:middle;" src="dillo3.png" />
- middle</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:baseline;" src="dillo1.png" />
<img style="vertical-align:baseline;" src="dillo2.png" />
<img style="vertical-align:baseline;" src="dillo3.png" />
- baseline</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:sub;" src="dillo1.png" />
<img style="vertical-align:sub;" src="dillo2.png" />
<img style="vertical-align:sub;" src="dillo3.png" />
- sub</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:super;" src="dillo1.png" />
<img style="vertical-align:super;" src="dillo2.png" />
<img style="vertical-align:super;" src="dillo3.png" />
- super</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:text-top;" src="green.png" />
<img style="vertical-align:bottom;" src="dillo1.png" />
<img style="vertical-align:bottom;" src="dillo2.png" />
<img style="vertical-align:bottom;" src="dillo3.png" />
- bottom</h1>
<hr>
<hr>
<h1>Vertical align
<img style="vertical-align:text-top;" src="green.png" />
<img style="vertical-align:text-bottom;" src="dillo1.png" />
<img style="vertical-align:text-bottom;" src="dillo2.png" />
<img style="vertical-align:text-bottom;" src="dillo3.png" />
- text-bottom</h1>
<hr>
<h1>Vertical align
<img style="vertical-align:super;" src="green.png" />
<img style="vertical-align:text-top;" src="dillo1.png" />
<img style="vertical-align:text-top;" src="dillo2.png" />
<img style="vertical-align:text-top;" src="dillo3.png" />
- text-top</h1>
<hr>
</body>
</html>
|