解决iframe IE8透明不兼容

要使 ie8 的 iframe 的透明,需要设置两点:

设置 iframe 的 allowTransparency 属性值为 true:

<iframe allowtransparency="true" src="test1.html" width="200" height="126"></iframe>
设置 iframe 里的页面的 body 的样式背景色为透明:

<body style="background-color:transparent">

frameborder="no"——设置无边框

原文地址:https://www.cnblogs.com/victor5230/p/5795731.html