标签:style color width strong html rgb
在使用iframe的时候,有时候想要让调用的iframe框架里面的不显示白背景,让它变得透明,在firefox是透明的,但是在IE浏览器却不透明。
这个其实比较容易解决,只需要增加一个属性即可。
就是在iframe标签中加入属性allowtransparency="true"
<iframe src="weste.html" id="rss" width="90%" height="200" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
我看到网上有些写的还要在iframe调用的页面body中加入style="background-color:transparent",这个其实在IE6和以上版本的浏览器是不需要的,这个对应只是在IE5.5浏览器才需要。但是一定要注意再页面中千万不能加入任何背景或者背景色,这样才能实现出透明效果。
如果被调用的页面时我们不能控制的,可以使用:IFRAME.contentWindow.documnet.body.backgroundColor="transparent"来使其透明。
标签:style color width strong html rgb
原文地址:http://www.cnblogs.com/hyaaon/p/3710376.html