Thew
Thew

Reputation: 15959

IFrame background transparent in IE

So i have this iFrame with the class .transparentbg:

.transparantbg{
    background-color: transparent;
}

This works fine in Chrome, but not in IE...

Help please?

Greetings

Upvotes: 45

Views: 56918

Answers (1)

Hussein
Hussein

Reputation: 42818

Add allowTransparency="true" to your iframe

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

For whatever.htm add background:transparent to its body tag.

<body style="background:transparent">

Upvotes: 107

Related Questions