我正在尝试使用border-radius.htc(http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser)方法在以下站点的IE pn中弄圆角,但似乎无法正常工作。

将鼠标悬停在菜单上时,级别2子菜单应具有圆角,但没有(IE8)。

在HTML源代码中搜索.rounded-corners,以查看它的应用位置以及应该显示但未显示的位置。

谁能帮忙吗?

http://berrisford.gumpshen.com

.ie6 .rounded-corners, .ie7 .rounded-corners, .ie8 .rounded-corners, .ie9 .rounded-corners {
  behavior: url(border-radius.htc);
}

最佳答案

您不能只使用:

.ie6 .rounded-corners, .ie7 .rounded-corners, .ie8 .rounded-corners, .ie9 .rounded-corners {
  behavior: url(border-radius.htc);
  border-radius: 4px; /* example */
}


它还确保它也尝试CSS的方法。

08-05 14:13