从IFrame中删除边框
如何从嵌入在我的网络应用程序中的iframe
删除边框? iframe
一个例子是:
<iframe src="myURL" width="300" height="300">Browser not compatible.</iframe>
假设背景颜色一致,我希望从我的网页上的内容转换到iframe
的内容。 目标浏览器仅限IE6,不幸的是,其他解决方案无法帮助。
添加frameBorder
属性(注意大写'B' )。
所以它看起来像:
<iframe src="myURL" width="300" height="300" frameBorder="0">Browser not compatible.</iframe>
在试图删除IE7中的边框后发疯,我发现frameBorder属性区分大小写。
你必须用大写字母B来设置frameBorder属性。
<iframe frameBorder="0" ></iframe>
除了添加frameBorder属性外,您可能还需要考虑将滚动属性设置为“no”以防止出现滚动条。
<iframe src="myURL" width="300" height="300" frameBorder="0" scrolling="no">Browser not compatible. </iframe >
链接地址: http://www.djcxy.com/p/19243.html