Is it possible to make an iframe transparent?
Is it possible to make an iframe transparent? ManOfTeal.COM a Proud UNA site, six years running strong! |
1. Add allowtransparency:
allowtransparency="true"
Example:
<iframe name="info" src="main.html" allowtransparency="true">
// some code for browsers who are not able to view the <iframe> tag
</iframe>
2. you have to put the transparency to the pages that should load into the <iframe>, with CSS like this:
<style type="text/css">
<!-- BODY {background:none transparent;}-->
</style>
sup |
Thank You! ManOfTeal.COM a Proud UNA site, six years running strong! |