Open GoogleCodeExporter opened 8 years ago
I had this problem as well, but it was because I was using transparent
backgrounds on one of the divs through a MS filter. The "first" div which has
the problem (that is, the second div listed in the DOM) was the one where Curvy
Corners broke. I would check your styles and remove anything which might have
caused the problem.
I can verify that it does work on multiple divs using a class definition, on my
page I have
<div class="roundCorners" id="events">
/// some code
</div>
<div class="roundCorners" id="paypal">
/// some code
</div>
etc...
and my CSS simply reads
.roundCorners {
border-radius:10px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
padding: 10px;
}
and all of the DIVs get rounded corners in all IEs.
Original comment by bora...@gmail.com
on 16 Mar 2011 at 5:21
Original issue reported on code.google.com by
maorb...@gmail.com
on 8 Feb 2011 at 4:15