
Does not work when adding only a single border radius.
Hello,
I've used css3pie for the first time and I'm pleasantly surprised. I really like it.
However I found one certain situation where it doesn't work.
It works when the borders are set for all 4 of them:
Code:
#this-works
{
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
behavior: url(/path/to/css3pie/PIE.htc);
}
But this doesn't render the borders:
Code:
#this-does-not-work
{
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
behavior: url(/path/to/css3pie/PIE.htc);
}
Any idea on how to avoid this?
Many thanks in advance!
Cheers,
Danny