小编典典

从IFrame移除边框

css

如何从网络应用程序中嵌入的iframe中删除边框?iframe的一个示例是:

<iframe src="myURL" width="300" height="300">Browser not compatible.</iframe>

假设背景颜色一致,我希望从页面上的内容到iframe的内容的过渡是无缝的。目标浏览器仅是IE6,遗憾的是,其他浏览器的解决方案将无济于事。


阅读 304

收藏
2020-05-16

共1个答案

小编典典

添加frameBorder属性(注意 大写字母’B’ )。

因此,它看起来像:

<iframe src="myURL" width="300" height="300" frameBorder="0">Browser not compatible.</iframe>
2020-05-16