x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
img.top {
7
vertical-align: text-top;
8
}
9
10
img.bottom {
11
vertical-align: text-bottom;
12
}
13
</style>
14
</head>
15
16
<body>
17
<p>一个<img src="/examples/logo.png" alt="mifengjc" width="270" height="50" />默认对齐的图像。</p>
18
<p>一个<img class="top" src="/examples/logo.png" alt="mifengjc" width="270" height="50" /> text-top 对齐的图像。</p>
19
<p>一个<img class="bottom" src="/examples/logo.png" alt="mifengjc" width="270" height="50" /> text-bottom 对齐的图像。</p>
20
</body>
21
</html>