
Re: border-radius not working for IE using CSS3 PIE
I've also not been able to get border-radius to work. I'm using more or less exactly what they use in their example, just with the dimension adjusted.
As above, the shadows work.
Here's what I'm using (shadows work, radius doesn't):
Code:
behavior: url('/sites/all/themes/adaptivetheme/adaptivetheme_bc/behaviors/PIE.htc');
/* ROUNDED CORNERS */
moz-border-radius: 9px!important;
-webkit-border-radius: 9px!important;
border-radius: 9px!important;
/* Shadow */
background-color: #fff!important;
box-shadow: 4px 4px 8px #4F4F4F;
... also, doesn't seem to matter where the behavior line is placed, before or after.
EDIT:
I've figured out that, at least on IE8, you can have shadows or you can have rounded corners, but you can't have both.