html - border-radius gets weird when property has different values for corners on IE lte 8 -


i'm applying border-radius few elements on page, , in order make work on ie 6-8, i'm using pie.

check out

weirg bug o.o

so can see, corners without values (or values different each other) border-radius, effect gets weird.

here's code:

.cotacao {   -webkit-border-radius: 1px 20px 1px 20px;   -moz-border-radius: 1px 20px 1px 20px;   border-radius: 1px 20px 1px 20px;   border: 10px solid #fff; } 

and specific code ie

.cotacao {   behavior:url(/assets/css/common/pie.htc);   position: relative !important; } 

what's going on? bug related border thickness? and, if is, there known workaround? thanks!

this bug in pie 1.0 code. see https://github.com/lojjic/pie/issues/11

it's fixed in 2.0 beta if you're willing try that.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -