CSS Rounded border for div works on chrome and ff, but not on IE
Posted
by Jean
on Stack Overflow
See other posts from Stack Overflow
or by Jean
Published on 2010-04-15T08:32:02Z
Indexed on
2010/04/15
8:33 UTC
Read the original article
Hit count: 253
css
Hello,
I have this CSS style that does a rounded corners for div border, but for some reason IE does not like this code.
#selector{
background-color:#DBDBDB;
margin-top:-23px;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
background-color:rgba(255,255,255,0.5);
}
How can do rounded div border on IE.
Thanks Jean
© Stack Overflow or respective owner