下载地址:http://www.iefans.net/wp-content/uploads/2010/12/iecss3.rar
解压后,打开test.html,如果显示效果是圆角,则可以继续!
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.test
{
width: 400px;
height: 200px;
background-color: blue;
border: 1px solid blue;
margin-bottom: 10px;
border-radius: 5px 10px 15px 20px;
-moz-border-radius: 5px 10px 15px 20px;
behavior: url(Styles/ie-css3.htc);
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<div class="test">
这个页面是用以测试主机是否有正确的content-type。
</div>
</div>
</form>
</body>
</html>
效果: