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


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


HTML <iframe> width属性用于以像素为单位指定<iframe>的宽度。

用法:

<iframe width="pixels">

属性值:包含单个值像素,以像素为单位指定iframe的宽度。


下面的示例说明了HTML中<iframe> width属性的用法:

例:

<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        HTML iframe width Attribute 
    </title> 
</head> 
  
<body style="text-align:center;"> 
       
    <h1 style="color:green;"> 
        GeeksforGeeks 
    </h1> 
      
    <h2> 
        HTML iframe width Attribute 
    </h2> 
      
    <iframe src="https://ide.geeksforgeeks.org/index.php"
            height="250" width="400"></iframe>  
</body>  
  
</html>                    

输出:

支持的浏览器:HTML iframe宽度属性支持的浏览器如下:

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


相关用法


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