所以我有这个带有类.transparentbg的iFrame:

.transparantbg{
    background-color: transparent;
}

在Chrome浏览器中工作正常,但在IE中无法正常运行...

请帮忙?

问候

最佳答案

将allowTransparency =“true”添加到您的iframe

<IFRAME ID="Frame1" SRC="whatever.htm" allowTransparency="true">

对于what.htm,请在其background:transparent标记中添加body
<body style="background:transparent">

10-08 16:47