web-dev-qa-db-fra.com

Fond IFrame transparent en IE

J'ai donc cet iFrame avec la classe .transparentbg:

.transparantbg{
    background-color: transparent;
}

Cela fonctionne bien dans Chrome, mais pas dans IE ...

Aidez-moi, s'il vous plaît?

Salutations

45
Thew

Ajoutez allowTransparency = "true" à votre iframe

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

Pour tout.htm, ajoutez background:transparent à sa balise body.

<body style="background:transparent">
107
Hussein