How to use border-radius in IE.(All Browsers)
because firefox,chrome support border-radius but how to use for IE?
How to use border-radius in IE.(All Browsers)
because firefox,chrome support border-radius but how to use for IE?
you need try this:
.my-block {
-moz-border-radius: 10px; /* Firefox */
-webkit-border-radius: 10px; /* Safari, Chrome */
-khtml-border-radius: 10px; /* KHTML */
border-radius: 10px; /* CSS3 */
/* Для плохих IE */
behavior: url(border-radius.htc); /*IE border-radius */
}
Fortunately, IE can be quite beautiful to win his own means. One of my favorite solutions using VML and behaviour - curved-corner. To use merge border-radius.htc, we add next to CSS and use the following code: Spent time