如何从网络应用程序中嵌入的iframe中删除边框?iframe的一个示例是:
<iframe src="myURL" width="300" height="300">Browser not compatible.</iframe>
假设背景颜色一致,我希望从页面上的内容到iframe的内容的过渡是无缝的。目标浏览器仅是IE6,不幸的是,其他浏览器的解决方案将无济于事。
如何从网络应用程序中嵌入的iframe中删除边框?iframe的一个示例是:
<iframe src="myURL" width="300" height="300">Browser not compatible.</iframe>
假设背景颜色一致,我希望从页面上的内容到iframe的内容的过渡是无缝的。目标浏览器仅是IE6,不幸的是,其他浏览器的解决方案将无济于事。
Answers:
添加frameBorder
属性(注意大写字母'B')。
因此,它看起来像:
<iframe src="myURL" width="300" height="300" frameBorder="0">Browser not compatible.</iframe>
根据iframe文档,不推荐使用frameBorder,并且首选使用“ border” CSS属性:
<iframe src="test.html" style="width: 100%; height: 400px; border: 0"></iframe>
对于浏览器特定的问题,请frameborder="0" hspace="0" vspace="0" marginheight="0" marginwidth="0"
根据Dreamweaver 添加:
<iframe src="test.html" name="banner" width="300" marginwidth="0" height="300" marginheight="0" align="top" scrolling="No" frameborder="0" hspace="0" vspace="0">Browser not compatible. </iframe>
使用HTML iframe frameborder属性
http://www.w3schools.com/tags/att_iframe_frameborder.asp
注意:对IE 使用B帧顺序(第B章),否则将不起作用。但是,HTML5不支持iframe frameborder属性。因此,请改用CSS。
<iframe src="http://example.org" width="200" height="200" style="border:0">
您还可以使用滚动属性http://www.w3schools.com/tags/att_iframe_scrolling.asp删除滚动
<iframe src="http://example.org" width="200" height="200" scrolling="no" style="border:0">
另外,您可以使用HTML5中新增的Seamless属性。仅Opera,Chrome和Safari支持iframe标记的Seamless属性。存在时,它指定iframe看起来应该是包含文档的一部分(无边框或滚动条)。到目前为止,只有Opera,Chrome和Safari支持该标签的Seamless属性。但是在不久的将来,它将成为标准解决方案,并将与所有浏览器兼容。http://www.w3schools.com/tags/att_iframe_seamless.asp
您可以style="border:0;"
在iframe代码中使用。这是在HTML5中删除边框的推荐方法。
查看我的html5 iframe生成器工具,以自定义iframe,而无需编辑代码。
如果要删除框架的边框或任何可以使用style属性的内容,可以将Style属性用于 HTML5。如下
代码在这里
<iframe src="demo.htm" style="border:none;"></iframe>
添加frameBorder属性(大写字母“ B”)。
<iframe src="myURL" width="300" height="300" frameBorder="0">Browser not compatible. </iframe>
您也可以使用JavaScript进行此操作。它将找到所有iframe元素并在IE和其他浏览器中删除其边界(尽管您可以在非IE浏览器中设置“ border:none;”样式,而不使用JavaScript)。并且即使在生成iframe并将其放置在文档中之后,它也将起作用(例如,以纯HTML而非JavaScript添加的iframe)!
这似乎可行,因为在BOM表中创建了iframe之后,IE会创建边框,而不是像您期望的那样在iframe元素上创建边框,而是在iframe的内容上创建边框。($ @&*#@ !!! IE !!!)
注意:(仅当)父窗口和iframe来自相同的来源(相同的域,端口,协议等)时,IE部分才起作用(当然)。否则,脚本将在IE错误控制台中获得“拒绝访问”错误。如果发生这种情况,您唯一的选择就是在生成它之前进行设置(如其他人所指出的那样),或者使用非标准frameBorder =“ 0”属性。(或者只是让IE看起来很丑-我当前最喜欢的选项;))
我花了很多时间工作到绝望的地步才能解决这个问题...
请享用。:)
// =========================================================================
// Remove borders on iFrames
if (window.document.getElementsByTagName("iframe"))
{
var iFrameElements = window.document.getElementsByTagName("iframe");
for (var i = 0; i < iFrameElements.length; i++)
{
iFrameElements[i].frameBorder="0"; // For other browsers.
iFrameElements[i].setAttribute("frameBorder", "0"); // For other browsers (just a backup for the above).
iFrameElements[i].contentWindow.document.body.style.border="none"; // For IE.
}
}
如果您要放置iframe的页面的文档类型是HTML5,则可以使用如下seamless
属性:
<iframe src="..." seamless="seamless"></iframe>
添加frameBorder属性,或者使用边框宽度为0px;的样式,或者将边框样式设置为等于none。
使用以下3种方法之一:
<iframe src="myURL" width="300" height="300" style="border-width:0px;">Browser not compatible.</iframe>
<iframe src="myURL" width="300" height="300" frameborder="0">Browser not compatible.</iframe>
<iframe src="myURL" width="300" height="300" style="border:none;">Browser not compatible.</iframe>
还设置border =“ 0px”
<iframe src="yoururl" width="100%" height="100%" frameBorder="0"></iframe>
尝试
<iframe src="url" style="border:none;"></iframe>
这将删除边框。
其简单的只需在iframe代码frameborder = 0中添加属性
<iframe src="" width="200" height="200" frameborder="0"></iframe>
1.通过内联样式设置边框:0
<iframe src="display_file.html" style="height: 400px; width:
100%;border: 0;">HTML iFrame is not compatible with your browser
</iframe>
2.通过标签属性frameBorder设置0
<iframe src="display_file.html" width="300" height="300" frameborder="0">Browser not compatible.</iframe>
3.如果我们有多个I Frame,我们可以给class并在内部或外部放置css。
HTML:
<iframe src="display_file.html" class="no_border_iframe">
HTML iFrame is not compatible with your browser
</iframe>
CSS:
<style>
.no_border_iframe{
border: 0; /* or border:none; */
}
</style>
<iframe src="URL" frameborder="0" width="100%" height="200">
<p>Your browser does not support iframes.</p>
</iframe>
<iframe frameborder="1|0">
(OR)
<iframe src="URL" width="100%" height="300" style="border: none">Your browser
does not support iframes.</iframe>
The <iframe> frameborder attribute is not supported in HTML5. Use CSS
instead.