HTML <iframe> 标签的 marginwidth 属性 详解
HTML基础 2023-07-13 10:15:53小码哥的IT人生shichen
HTML <iframe> 标签的 marginwidth 属性
实例
带有 50 像素左侧和右侧空白边距的 iframe:
<iframe src ="/index.html" marginwidth="50px">
<p>Your browser does not support iframes.</p>
</iframe>
完整实例【亲自试一试】:
<html>
<body>
<iframe src ="/demo/example/html/demo_iframe.html" marginwidth="50px"
width="400px" height="300px">
<p>Your browser does not support iframes.</p>
</iframe>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
marginwidth 属性规定 iframe 的左边和右边的空白边距,以像素计。
语法
<iframe marginwidth="value">
属性值
值 | 描述 |
---|---|
pixels | 规定 iframe 的左边和右边的空白边距,以像素计。 |