HTML DOM marginWidth 属性
定义和用法
marginWidth 属性可设置或返回框架的左侧和右侧边缘的页面空白(以像素为单位)。
语法
- iframeObject.marginWidth=pixels
实例
下面的例子将返回 iframe 的左边缘和右边缘的页空白:
- <html>
- <body>
- <iframe src="frame_a.htm" id="frame1" marginwidth="50"></iframe>
- <br /><br />
- <script type="text/javascript">
- x=document.getElementById("frame1");
- document.write("Left and right margins of the iframe are: ");
- document.write(
x.marginWidth
);- </script>
- </body>
- </html>