代码示例:(标识:eg_html_image_align)
<html>

<body>

<h2>未设置对齐方式的图像:</h2>

<p>图像 <img src ="/static/demo/images/eg_cute.gif"> 在文本中</p>

<h2>已设置对齐方式的图像:</h2>

<p>图像 <img src="/static/demo/images/eg_cute.gif" align="bottom"> 在文本中</p>

<p>图像 <img src ="/static/demo/images/eg_cute.gif" align="middle"> 在文本中</p>

<p>图像 <img src ="/static/demo/images/eg_cute.gif" align="top"> 在文本中</p>

<p>请注意,bottom 对齐方式是默认的对齐方式。</p>

</body>
</html>
运行结果: