经常调用iframe页面的时候发现在IE浏览器下背景没有设置,确有白色的底色背景,火狐、谷歌确正常,下面是iframe教程解决方案。
方法一:
框架页文件设置:
<body style="background-color:transparent" > 或 <body bgColor="transparent">
<iframe src="about.htm" width="100%" height="100%" align="center" scrolling="auto" frameborder="0" style="filter:chroma(color=#ffffff)" >
</iframe>
缺点:iFrame里的白色的都变透明了。
方法二:(推荐使用)
<iframe src="about.htm" width="100%" height="100%" align="center" scrolling="auto" frameborder="0" allowTransparency="true" >
</iframe>
ok,至此iframe背景透明问题完全解决。跟多建站教程:
www.internetke.com