CSS3 PIE makes Internet Explorer 6-9 capable of rendering several of the CSS3 decoration features.
PIE enables rendering of several CSS3 decoration features in IE6-9.
Currently it supports:
- border-radius
- box-shadow
- border-image
- multiple background images
- linear-gradient as background image
- RGBA colors
This is achieved via two Microsoft proprietary elements: Vector Markup Language and HTML-Components.
given the following example CSS3-Feature:
#myElement {
border-radius: 10px;
}
In order to enable the CSS3 feature in Internet Explorer the only thing to do is simply adding the following rule:
#myElement {
...
behavior: url(PIE.htc);
}
In addition to the traditional PIE.htc behavior, the distribution now also includes a pure JavaScript version, so that the User in not bound to using the .htc
file.
The official Website: http://css3pie.com/