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