
CSS3Pie has no effect for me - help!
I'm trying to use CSS3Pie to style a few different elements on a page. Here's some example markup:
Code:
<div id="search">
<label for="q">Search</label>
<input type="text" name="q" id="q" class="text" size="18" />
<input type="image" src="img/search-button.gif" alt="Search" />
</div><!-- /#search -->
...and here's the CSS I'm using to style it:
Code:
#headerInner #search input.text {
width: 163px;
margin-right: 7px;
border: 1px solid #adadad;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
background: #fcfcfc;
padding: 4px 4px 5px;
behavior: url('/css/pie.htc');/* CSS3 fixes for IE6-8 */
}
I'm using IIS7 as my web server - we're a .NET company, primarily - and .htc is already configured under MIME types (as "text/x-component"). But when I try access pie.htc directly in IE6, it's being served as a download of an unrecognised file type.
Is that right?