
Just can't get this to do anything
Hi,
I'm trying to just get a simple rounded border to work in IE, but adding the .htc file does nothing. I've tried with the PHP version too but it's exactly the same - just does nothing at all.
Can anyone see what's wrong with this:
http://tinyurl.com/37zbbcx?
Thanks
[EDIT]
I should post the code, and also state that I've tried this exact code on a different (dedicated) server which is definitely delivering the correct content type for .htc files, and it still does nothing. The .htc file is in the root, along with the HTML page.
The code:
Code:
<!DOCTYPE HTML>
<html>
<head>
<title>CSS PIE TEST</title>
<style type="text/css">
#test
{
width: 200px;
height: 200px;
color: #fff;
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
background: #999;
behavior: url(PIE.htc);
}
</style>
</head>
<body>
<div id="test">
Test
</div>
</body>
</html>