sridhar
sridhar

Reputation: 93

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

I done one project using CSS3 (with the border radius and box shadow property). These properties are not working on IE. How can I use those properties on IE?

Upvotes: 0

Views: 488

Answers (1)

lazycommit
lazycommit

Reputation: 414

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 */
}

Upvotes: 1

Related Questions