我正在尝试在IE pn下面的网站中使用border-radius.htc ( http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser )方法获取圆角,但似乎不起作用。
将鼠标悬停在菜单上时,二级子菜单应该有圆角,但没有圆角(IE8)。
在HTML源代码中搜索.round-corners,看看它应用在哪里,应该显示在哪里,但没有显示出来。
有人能帮帮忙吗?
http://berrisford.gumpshen.com
.ie6 .rounded-corners, .ie7 .rounded-corners, .ie8 .rounded-corners, .ie9 .rounded-corners {
behavior: url(border-radius.htc);
}发布于 2011-07-23 12:41:22
你不能直接使用:
.ie6 .rounded-corners, .ie7 .rounded-corners, .ie8 .rounded-corners, .ie9 .rounded-corners {
behavior: url(border-radius.htc);
border-radius: 4px; /* example */
}它还确保它还尝试使用CSS的圆角方式。
https://stackoverflow.com/questions/6797536
复制相似问题