使用htc行为支持IE的边界半径

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用htc行为支持IE的边界半径相关的知识,希望对你有一定的参考价值。

note that for the corners to work in IE, you need to install the htc code from http://code.google.com/p/curved-corner/

.curved {
-moz-border-radius:10px; /* Firefox */
-webkit-border-radius:10px; /* Safari and chrome */
-khtml-border-radius:10px; /* Linux browsers */
border-radius:10px; /* CSS3 */
behavior:url(border-radius.htc); /* make IE use properties of border-radius */
}
  1. .selector-to-be-rounded {
  2. -moz-border-radius:10px;
  3. -webkit-border-radius:10px;
  4. -khtml-border-radius:10px;
  5. border-radius:10px;
  6. behavior:url(border-radius.htc);
  7. }

以上是关于使用htc行为支持IE的边界半径的主要内容,如果未能解决你的问题,请参考以下文章

IE中的边界半径使用(所有版本)[重复]

在 IE8 中使用 CSS3Pie htc 作为边框半径

修复边界半径在 Firefox 中的不当行为

不支持 IE9 边框半径简写?

ie7、safari 的边界半径

IE 11 边界半径怪异(在 IE 9 和 IE 10 中未发生)