HTML DOM align 属性

定义和用法

align 属性可设置或返回如何根据周围的文本来排列 iframe。

语法

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

实例

下面的例子将把 iframe 根据环绕文本排列到右侧:

  1. <html>
  2. <body>
  3.  
  4. <iframe src="frame_a.htm" id="frame1"></iframe>
  5.  
  6. <p>Some text. Some text. Some text. Some text.</p>
  7.  
  8. <script type="text/javascript">
  9. document.getElementById("frame1").align="right";
  10. </script>
  11.  
  12. </body>
  13. </html>