views:

1052

answers:

2

i need help . its work ok in firefox or Opera. the problem is in ie. i try to put it in style file , or inline style but not effect.

+2  A: 

Have you tried setting allowTransparency="true" on the iframe and setting the background color of the document body of the child frame to transparent?

See the MSDN documentation on allowTransparency:

http://msdn.microsoft.com/en-us/library/ms533072(VS.85).aspx

Andy E
Even though it is not working<iframe scrolling="auto" name="main" style="background-color: green;allowTransparency=true;width:100%;height:90%;background-image:url(ProductVehicleCombo_Problem.JPG)"> </iframe>
priyanka.sarkar
priyanka: take another look at your syntax there. allowTransparency is an attribute of the iframe tag, not a style property.
Andy E
A: 

Try this .. it should work(tested in IE/Firefox/Google Crome)

<div><img src="a.JPG"></div>

<div>
<iframe style="display:none" width="325" height="276" frameborder="0" scrolling="auto"></iframe>
</div>
priyanka.sarkar