亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM align 屬性

定義和用法

align 屬性可設(shè)置或返回如何根據(jù)周?chē)奈谋緛?lái)排列 iframe。

語(yǔ)法

iframeObject.align=left|right|top|middle|bottom

實(shí)例

下面的例子將把 iframe 根據(jù)環(huán)繞文本排列到右側(cè):

<html>
<body>

<iframe src="frame_a.htm" id="frame1"></iframe>

<p>Some text. Some text. Some text. Some text.</p>

<script type="text/javascript">
document.getElementById("frame1").align="right";
</script>

</body>
</html>