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


HTML <object> border属性用法及代码示例


HTML <object> border属性用于定义object元素周围的边框宽度。

用法:

<object border="pixels">

属性值:


  • pixels:用于以像素为单位指定边框的宽度。

例:此示例说明了HTML中<object> border属性的用法:

<!DOCTYPE html>  
<html>  
  
<head>  
    <title>  
        HTML object border Attribute  
    </title>  
</head>  
  
<body>  
    <center>  
        <h1>GeeksForGeeks</h1>  
          
        <h1>  
            HTML <object> border Attribute  
        </h1>  
        <br>  
      
        <object data=  
"https://www.geeksforgeeks.org/wp-content/uploads/Geek_logi_-low_res.png"
                width="550px" height="150px" border="4">  
            GeeksforGeeks  
        </object>  
    </center>  
</body>  
  
</html>

输出:

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

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


相关用法


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