Hi,
Is it possible to style an iframe with a background colour within MS IE6?
If so, how?
Thanks. Tony.
Hi,
Is it possible to style an iframe with a background colour within MS IE6?
If so, how?
Thanks. Tony.
You can do it programatically from the "parent" page with Javsacript like this...
window.frames["frameName"].document.body.style.backgroundColor = "green";
In order for this to work, however, the page within the frame has to sit on the same domain as the parent.