HTML DOM align 屬性
定義和用法
align 屬性可設(shè)置返回與內(nèi)聯(lián)內(nèi)容的對(duì)齊方式。
語(yǔ)法
imageObject.align=left|right|top|middle|bottom
實(shí)例
下面的例子把圖像根據(jù)周圍的文本進(jìn)行右對(duì)齊:
<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>