当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML <iframe> marginwidth属性用法及代码示例


HTML <iframe>页边距宽度属性用于指定Iframe元素中内容的左右页边距。

用法:

<iframe marginwidth="pixels">

属性值:


  • pixels:它包含值,即像素,它指定Iframe元素中内容的左右边界。

注意:HTML 5不支持此属性,作为替代,您可以使用CSS。
下面的示例说明<iframe> marginwidth属性:示例:

<!DOCTYPE html> 
<html> 
<head> 
    <title> 
     HTML <iframe> marginwidth Attribute 
    </title> 
</head> 
<body> 
    <center> 
        <h1 style="color:green;"> 
          GeeksforGeeks 
        </h1> 
        <h2> 
        HTML Iframe marginwidth Attribute 
    </h2> 
  
        <p>Content goes here</p> 
  
        <iframe src= 
"https://ide.geeksforgeeks.org/tryit.php" 
                height="200"
                width="400"
                marginwidth="50"> 
        </iframe> 
  </center> 
  
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML <iframe> marginwidth属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • Safari


相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <iframe> marginwidth Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。