描述:在 IE 浏览器中,<iframe>框架不会自动把背景设为透明
解决方案:
<iframesrc="content.html"allowTransparency="true"></iframe>
在 iframe 调用的 content.html 页面中设置
body{background-color: transparent;}
0