HTML <iframe> 标签的 marginwidth 属性

marginwidth 属性规定 iframe 的左边和右边的空白边距,以像素计。


实例

带有 50 像素左侧和右侧空白边距的 iframe:

  1. <html>
  2. <body>
  3. <iframe src="/index.html" marginwidth="50px" width="400px" height="300px">
  4. <p>您的浏览器不支持 iframe 标签。</p>
  5. </iframe>
  6. </body>
  7. </html>

定义和用法

marginwidth 属性规定 iframe 的左边和右边的空白边距,以像素计。


语法

  1. <iframe marginwidth="value">
属性值
描述
pixels 规定 iframe 的左边和右边的空白边距,以像素计。