我有一个网站,它在 IE 10 中作为浏览器模式和 IE5 怪癖作为文档模式完美运行。但是圆角在这种情况下不起作用。当我将文档模式更改为 IE 9 标准时,圆角正在工作。但我希望 IE 5 怪癖作为文档模式。
我的 CSS 是:
.roundedcorner
{
behavior: url(/Includes/border-radius.htc);
-moz-border-radius: 30px;
-webkit-border-radius: 30px;
-khtml-border-radius: 30px;
border-radius: 30px;
border-top-left-radius:30px;
border-top-right-radius:30px;
border-bottom-left-radius:30px;
border-bottom-right-radius:30px;
}