开发者

How can I use CSS3 border radius and box shadow property on IE?

开发者 https://www.devze.com 2023-01-25 09:59 出处:网络
I done one project using CSS3 (with the border radius and box shadow property). These properties are not working on IE.开发者_如何学JAVA How can I use those properties on IE? http://code.google.com/p/

I done one project using CSS3 (with the border radius and box shadow property). These properties are not working on IE.开发者_如何学JAVA How can I use those properties on IE?


http://code.google.com/p/curved-corner/downloads/detail?name=border-radius.htc

.my-block {
   -moz-border-radius: 10px; /* Firefox */
  -webkit-border-radius: 10px; /* Safari, Chrome */
  -khtml-border-radius: 10px; /* KHTML */
  border-radius: 10px; /* CSS3 */
  behavior: url(border-radius.htc); /* see IE border-radius */
}
0

精彩评论

暂无评论...
验证码 换一张
取 消