欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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>