CSS Corner Image/ Radius
Posted
by bgreen1989
on Stack Overflow
See other posts from Stack Overflow
or by bgreen1989
Published on 2009-03-11T01:58:32Z
Indexed on
2010/05/07
13:38 UTC
Read the original article
Hit count: 279
css
hi. i used this corner style:
.corners4{
background:url(../img/panelHeaderColor.jpg) repeat-x;
-moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px;
-moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px;
-moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px;
}
but, this doesn't work in IE, is there any IE equivalent for this? thanks
© Stack Overflow or respective owner