I noticed that my CSS Rounded Corners and Shadow work perfectly fine when I debug in Visual Studio using Chrome. However, when I upload it to a server and try to access it through Chrome or IE, the shadow and rounded corners do not display. Is there something different between the server side and the virtual server provided by Visual Studio? Thank you for your help in advance.
.greenborder
{
border-radius: 15px 15px 15px 15px;
padding: 8px;
border: 2px solid #7F9F1A;
behavior: url(ie-css3.htc);
background-color: White;
box-shadow: 10px 10px 5px #888;
}
UPDATED
-moz-border-radius: 15px; /* Firefox */
-webkit-border-radius: 15px; /* Safari, Chrome */
border-radius: 15px 15px 15px 15px; /* CSS3 */
padding: 8px;
border: 2px solid #7F9F1A;
behavior: url(ie-css3.htc);
background-color: White;
-webkit-box-shadow: 10px 10px 5px #888;
-moz-box-shadow: 10px 10px 5px #888;
box-shadow: 10px 10px 5px #888;