I popped an iframe in a page and styled it with a BG color... all was well until I viewed with IE (it works with Firefox, but not a mozilla browser on a linux machine either...), it just shows a white background. Anyone know if there is away around this?
iframe {
width:200px;
height:300px;
background:#B6EA7d url(bgImage.jpg) left top no-repeat;
}
found the solution... well somewhat, the image still does not show, but I was more interested in changing the bg colour and opacity worked...
ifrome{
width:200px;
height:300px;
background:#B6EA7d url(bgImage.jpg) left top no-repeat;
filter: alpha(opacity=40);
}
Thanks.
Last edited by kmurphy; Oct 3, 2004 at 15:33.
Reason: posted too soon... found solution with 'filter'
Bookmarks