我正在尝试为我的 div 添加圆角边框。在Firefox中它正在工作。在网上我找到了这个链接http://www.htmlremix.com/css/curved-corner-border-radius-cross-browser。我已经添加了htc文件。我将它包含在根目录以及我的 css 文件夹中,但它不适用于 IE。这是我在做什么
position:absolute;
border:1px solid #ccc;
border-radius: 15px;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
behavior: url(css/border-radius.htc); url(border-radius.htc); //both not working
background: rgb(180,221,180); /* Old browsers */
为什么它在 IE 中不起作用?