
Opacity disappears when using border radius.
This works:
Code:
.somestyle {
-moz-opacity: 0.75;
opacity:0.75;
filter:alpha(opacity=75); /* For IE8 and earlier */
border-radius: 10px;
}
although it (obviously) does not show rounded corners on IE8 and earlier.
But as soon as I add CSS3PIE:
Code:
.somestyle {
-moz-opacity: 0.75;
opacity:0.75;
filter:alpha(opacity=75); /* For IE8 and earlier */
border-radius: 10px;
behavior: url(PIE.htc);
}
opacity is set to 100%. I do get rounded corners. I've tried both v1.0.0 and v2.0-beta with the same results. Oddly enough I can distinctly remember it used to work. So I'm not sure what changed.