IE中的IFrame背景透明

所以我有这个类的iframe .transparentbg:

.transparantbg{ background-color: transparent; } 

这在Chrome中正常工作,但不在IE中…

请帮助?

问候

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

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

对于任何.htm添加background:transparent对其body标签background:transparent

 <body style="background:transparent">