codecamp

HTML iframe marginwidth 属性

HTML <iframe> marginwidth 属性

HTML iframe 标签参考手册 HTML <iframe> 标签

实例

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

<iframe src="demo_iframe.htm" marginwidth="50">
</iframe>

尝试一下 »

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 marginwidth 属性。


定义和用法

HTML5 不支持 <iframe> marginwidth 属性。请使用 CSS 代替。

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


语法

<iframe marginwidth="pixels">

属性值

描述
pixels规定 <iframe> 内容的左侧和右侧的空白边距,以像素计。


HTML iframe 标签参考手册 HTML <iframe> 标签
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

HTML标签

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }