我想要 IE7 和 IE8 中的圆角支持。我为此使用了border-radius.htc 文件。它适用于所有具有相同边框半径的角,但如果我更改任何角的边框半径,它就不起作用。我的代码是:
<!DOCTYPE html>
<html>
<head>
<title>Border Radius for IE7+</title>
<style>
.borderRadius{
background-color: #f0f0f0;
width: 300px;
height: 50px;
margin: 20px auto;
padding: 10px;
border: 1px solid #d7d7d7;
border-radius:10px;
-webkit-border-radius:10px;
-moz-border-radius:10px;
behavior: url(border-radius.htc);
}
</style>
</head>
<body>
<div class="borderRadius">
Content in Div.
</div>
</body>
</html>
这工作正常。但是如果我将样式更改为
<style>
.borderRadius{
background-color: #f0f0f0;
width: 300px;
height: 50px;
margin: 20px auto;
padding: 10px;
border: 1px solid #d7d7d7;
border-radius:10px 10px 0px 0px;
-webkit-border-radius:10px 10px 0px 0px;
-moz-border-radius:10px 10px 0px 0px;
behavior: url(border-radius.htc);
}
</style>
它使所有圆角保持相同的半径。请帮我解决这个问题。