实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h4>Image with default alignment (align="bottom"):</h4>
6
<p>This is some text. <img src="/upload/images/201509/cfcc6c13c28.gif" alt="Smiley face" width="32" height="32"> This is some text.</p>
7
8
<h4>Image with align="middle":</h4>
9
<p>This is some text. <img src="/upload/images/201509/cfcc6c13c28.gif" alt="Smiley face" align="middle" width="32" height="32"> This is some text.</p>
10
11
<h4>Image with align="top":</h4>
12
<p>This is some text. <img src="/upload/images/201509/cfcc6c13c28.gif" alt="Smiley face" align="top" width="32" height="32"> This is some text.</p>
13
14
<p><b>Note:</b> The align attribute is deprecated in HTML 4, and is not supported in HTML5. Use CSS instead.</p>
15
16
</body>
17
</html>