实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
img.top {vertical-align:text-top;}
6
img.bottom {vertical-align:text-bottom;}
7
</style>
8
</head>
9
10
<body>
11
<p>An <img src="/upload/love/css.gif" alt="shouce.ren" width="270" height="50" /> image with a default alignment.</p> 
12
<p>An <img class="top" src="/upload/love/css.gif" alt="shouce.ren" width="270" height="50" /> image with a text-top alignment.</p> 
13
<p>An <img class="bottom" src="/upload/love/css.gif" alt="shouce.ren" width="270" height="50" /> image with a text-bottom alignment.</p>
14
</body>
15
</html>
16