Can rounded corners be achieved in IE8 and 7?
Below is the code I am using:
#box{
background-color:#000;
color:#FFF;
text-transform:uppercase;
font-weight:bold;
height:50px;
border-radius:10px;
-webkit-border-radius: 10px;
-moz-border-radius:10px;
font-size:16px;
}
Thank you, J