HTML <iframe> marginheight属性用于指定Iframe元素中内容的顶部和底部空白。
用法:
<iframe marginheight="pixels">
属性值:
- pixels:它包含值,即像素,用于指定Iframe元素中内容的顶部和底部边距。
注意:HTML 5不支持此属性,因为可以使用CSS进行替换。
下面的示例说明<iframe> marginheight属性:示例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML <iframe> marginheight Attribute
</title>
</head>
<body>
<center>
<h1 style="color:green;">
GeeksforGeeks
</h1>
<h2>
HTML Iframe marginheight Attribute
</h2>
<p>Content goes here</p>
<iframe src=
"https://ide.geeksforgeeks.org/tryit.php"
height="200"
width="400"
marginheight="80">
</iframe>
</center>
</body>
</html>
支持的浏览器:下面列出了HTML <iframe> marginheight属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML <frame> marginheight属性用法及代码示例
- HTML for属性用法及代码示例
- HTML value属性用法及代码示例
- HTML max属性用法及代码示例
- HTML dir属性用法及代码示例
- HTML name属性用法及代码示例
- HTML min属性用法及代码示例
- HTML <a> rel属性用法及代码示例
- HTML low属性用法及代码示例
- HTML alt属性用法及代码示例
- HTML src属性用法及代码示例
- HTML <li> value属性用法及代码示例
- HTML <bdo> dir属性用法及代码示例
- HTML <map> name属性用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <iframe> marginheight Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。