HTML DOM align 属性
定义和用法
align 属性可设置或返回如何根据周围的文本来排列 iframe。
语法
iframeObject.align=left|right|top|middle|bottom
实例
下面的例子将把 iframe 根据环绕文本排列到右侧:
<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>