小码哥的IT人生

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 的左边和右边的空白边距,以像素计。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024