使用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 */
}
.selector-to-be-rounded { -moz-border-radius:10px; -webkit-border-radius:10px; -khtml-border-radius:10px; border-radius:10px; behavior:url(border-radius.htc); }
以上是关于使用htc行为支持IE的边界半径的主要内容,如果未能解决你的问题,请参考以下文章