<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>CSS3 Pie: Making your life as a webdesigner a little bit easier</title>
    <link>http://www.hollandonrails.nl/articles/520-CSS3-Pie-Making-your-life-as-a-webdesigner-a-little-bit-easier</link>
    <description>We all know how it's like to create beautiful websites, slice it and see it work in all the major browser, except for Internet Explorer.

Enter CSS3 Pie: CSS decorations for IE. Jason Johnston of "327creative.com":327creative.com wrote a CSS library which can be used in Internet Explorer with the IE behaviors capability. This library partially adds CSS3 support to IE6/7/8.

Example:

Normally: plays nicely in FF/Safari/Chrome
&lt;code&gt;
#myElement {
  background: #EEE;
  padding: 2em;
  -moz-border-radius: 1em;
  -webkit-border-radius: 1em;
  border-radius: 1em;
}
&lt;/code&gt;

For IE: Rounded borders \o/
&lt;code&gt;
#myElement {
  ...
  behavior: url(PIE.htc);
}
&lt;/code&gt;


PIE currently has full or partial support for the following CSS3 features:
* border-radius
* box-shadow
* border-image
* multiple background images
* linear-gradient as background image 

</description>
  </channel>
</rss>

