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 */
}
精彩评论