
PIE and background color in IE 8?
I tried a first usage of PIE in IE 8 and ... probably don't seem to use it the right way, yet.
When I use PIE on a div within a containing div, which has a background color set, the rendering of the rounded corners fails .... Also the backgroundcolor gets lost.
Code:
#container1
{
width: 100%;
}
#container2
{
width: 100%;
height: 200px;
background: #88F;
}
Code:
<div id="container1">
<div style="behavior: url(/PIE.php); width: 20%; border-radius: 6px; border: 3px solid #000; background: #8F8;" >
test2, within container, background and behaviour via inline style
</div>
</div>
<div id="container2">
<div style="behavior: url(/PIE.php); width: 20%; border-radius: 6px; border: 3px solid #000; background: #8F8;" >
test3, within container, background and behaviour via inline style
</div>
</div>
Any help would be greatly appreciated =)