當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。