Hi Jason!
Unfortunately i can't give you link to test page, because I have no hosting. But i can post here code of my test page:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>CSS3PIE Test</title>
<style type="text/css">
.test {
height: 100px;
border: 1px solid #696;
margin-top: 1px; /* !!!Without this string resizing does not work!!! */
margin-bottom: 10px;
padding: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: #666 0px 2px 3px;
-moz-box-shadow: #666 0px 2px 3px;
box-shadow: #666 0px 2px 3px;
background: #EEFF99;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#EEFF99), to(#66EE33));
background: -moz-linear-gradient(#EEFF99, #66EE33);
background: linear-gradient(#EEFF99, #66EE33);
-pie-background: linear-gradient(#EEFF99, #66EE33);
behavior: url('PIE.htc');
}
</style>
</head>
<body>
<div class="test">
This is test <div>
</div>
</body>
</html>
Look at it in Internet Explorer 8 (in IE7 mode) or in IE7.