在this site圆角处正在使用I.E 8 据我所知,在I.E 9之前不支持border-radius 仍然有一个div(只有一个),边界半径不起作用,右边是红色的。
div class=specialSidebar
没有特殊的过滤器:我可以看到这里应用的属性。 其他div有border-radius工作,如果你使用I.E 8的开发工具,并取消选中border-radius,它们就会变成正方形。
答案 0 :(得分:1)
查看他们的CSS,http://taylorstrategy.com/wp-content/themes/taylorStrategy/style.css
/*Right Sidebar*/
.rightSidebar {
background: #FFF;
padding: 14px 30px 10px 20px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
}
我相信在IE8中他们使用javascript(jQuery)来替换带圆角的border-radius。请查看this tutorial以获取更多信息。