I am trying to use the border-radius.htc solution to get rounded corners to display in IE8, but am having difficulty. In the HTML file, I am using an IE8 conditional placed near the top of the page that calls an IE8 specific stylesheet. In that stylesheet, I have the following rule:
.navbar .nav .active > a,
.navbar .nav .active > a:hover {
behavior: url("border-radius.htc");
-webkit-border-radius: 5px 5px 0px 0px;
-moz-border-radius: 5px 5px 0px 0px;
border-radius: 5px 5px 0px 0px;
position: relative;
zoom: 1;
}
When I go to view the page in IE8, the corners are still squared. Can anyone tell me why the rounded corners are not being applied in IE8? Is there something wrong with my CSS?