Image align 属性
定义和用法
align 属性可设置或者返回图像的 align 属性值。
align 属性指定了与内联内容的对齐方式。
语法
imageObject.align=value
align 属性可以是以下值:
值 | 描述 |
---|---|
left | 图像左对齐 |
right | 图像右对齐 |
middle | 图像居中对齐 |
top | 图像顶部对齐 |
bottom | 图像底部对齐 |
浏览器支持
所有主要浏览器都支持 align 属性
实例
实例
下面的例子把图像根据周围的文本进行右对齐:
<html> <head> <script> function alignImg() { document.getElementById("compman").align="right"; } </script> </head> <body> <img id="compman" src="compman.gif" alt="Computerman"> <p>Some text. Some text. Some text. Some text.</p> <input type="button" onclick="alignImg()" value="Align Image"> </body> </html>尝试一下 »