HTML <iframe> 标签的 marginheight 属性

HTML <iframe> 标签HTML <iframe> 标签

marginheight 属性规定 iframe 的顶部和底部的空白边距,以像素计。

 

1. 语法

<iframe marginheight="value">

属性值

描述
pixels 规定 iframe 的顶部和底部的空白边距,以像素计。

 

2. 范例

带有 50 像素顶部和底部空白边距的 iframe:

<iframe src ="/index.html" marginheight="50px">
<p>Your browser does not support iframes.</p>
</iframe>

我要试一试

HTML <iframe> 标签HTML <iframe> 标签

HTML <iframe> 标签的 marginwidth 属性:marginwidth 属性规定 iframe 的左边和右边的空白边距,以像素计。语法:<iframe marginwidth="<i>value</i>">