I've got an aspx file (happens with (x)html as well) that has the
following css rule sets:
body {
background-color:transparent;
font-family:Arial, serif;
}
* {
background-color:transparent;
font-family:Arial, serif;
min-height:0;
}
I am using the PageViewer web part to display this page. In Mozilla
the background is transparent as I expect, but in IE (6 or 7) it is
just white.
I've tried applying the universal fix with no luck.
I have also tried this fix:
* html body#thisbody {
/* value only for IE browsers */
background-color:transparent;
display:inline-block;
}
and then setting <body id="thisbody"> in my html to deal with the
haslayout value in ie. Still no luck.
Anyone have any ideas on this? Perhaps I'm not applying the fix
above correctly.