You are here:Home»KB»PC»Windows Family»Windows Vista»How to make a Transparent iframe
Sunday, 16 November 2008 14:43

How to make a Transparent iframe

Written by

I assume you have basic html skills and you know all about iframes.

Step 1

Insert your iframe code between body tags.

<iframe src="/yourpage.html" name="myframe" width="250" height="250" frameborder="0" allowtransparency="true"></iframe>

Step 2

Now copy the code below, and paste it between <head> tags of the page you are linking to.

In this example this page is yourpage.html

<style type="text/css">
Body { Background: transparent; }
</style>
Read 1141 times