我正在尝试使用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);
}
答案 0 :(得分:3)
你不能只使用:
.ie6 .rounded-corners, .ie7 .rounded-corners, .ie8 .rounded-corners, .ie9 .rounded-corners {
behavior: url(border-radius.htc);
border-radius: 4px; /* example */
}
它还确保它也尝试了围绕角落的CSS方式。