Keon wrote:[color=blue]
> I'm using a picture that the same is as the background.
> the iframe is not transparant but you can't see the different between the
> background of the iframe and the background of the page.
>
> greeting
> Koen
>
> "sleeper" <sleepervb@hotmail.com> wrote in message[color=green]
>>And would you be so kind to share it with the worls
>>greetz,sleeper[/color][/color]
[color=blue][color=green]
>>"Keon" <jansen.koen@telenet.be> schreef in bericht[color=darkred]
>>>Hoi
>>>Do someone know how i can make the background of a iframe transparancy? I
>>>already tried it with filter: Alpha(Opacity=50,); but it also make the
>>>text transperancy. do someone know how to do this?
>>>greetings
>>>Koen[/color][/color][/color]
http://msdn.microsoft.com/workshop/a...tingframes.asp
Using Transparency with Inline Floating Frames
Although Internet Explorer has supported transparent elements since
Internet Explorer 4.0, only Internet Explorer 5.5 supports transparent
content with inline floating frames.
The following conditions must be met to define transparent content for
inline floating frames.
* The ALLOWTRANSPARENCY attribute, used with the IFRAME element,
must be set to true.
* In the IFRAME content source document, the background-color or
BGCOLOR attribute of the BODY element must be set to transparent.
Note The BGCOLOR attribute can be applied to the BODY element, but it
is deprecated as of HTML 4.0. It is recommended that you use the
background-color attribute instead.
The following example shows how to apply the background-color attribute
to the IFRAME content source file.
<HTML>
<BODY STYLE="background-color:transparent">
<P>Transparent.
</BODY>
</HTML>
The following example shows how the IFRAME element is written for
transparent content.
<IFRAME NAME="Frame1" SRC="frame.htm" ALLOWTRANSPARENCY="true">
</IFRAME>