HTML DOM align 屬性
定義和用法
align 屬性可設置返回與內聯(lián)內容的對齊方式。
語法
imageObject.align=left|right|top|middle|bottom
實例
下面的例子把圖像根據周圍的文本進行右對齊:
<html>
<body>
<img id="compman" src="compman.gif" alt="Computerman" />
<p>Some text. Some text. Some text. Some text.</p>
<script type="text/javascript">
document.getElementById("compman").align="right";
</script>
</body>
</html>