Reputation: 35567
Is it possible to style an iframe with a background colour within MS IE6?
If so, how?
Upvotes: 1
Views: 389
Reputation: 82513
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.
Upvotes: 4