
Re: Vista IE-8 not giving specified CSS colors for PIE
This CSS applies when i used single file PIE.htc but when i used multiple files like given in this site it fails to render round corner buttons
Code:
color: #555555;
position: relative;
font-size: 11px;
font-weight:bold;
font-family:Verdana,Arial,sans-serif;
text-shadow: -1px -1px 1px #1f3836;
text-decoration: none;
text-align:center;
padding: 6px 20px;
-moz-border-radius: 9px 9px 9px 9px;
-webkit-border-radius: 9px 9px 9px 9px;
border-radius: 9px 9px 9px 9px;
cursor: pointer;
background: -moz-linear-gradient(#F2F2F2, #E6E6E6);
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#E6E6E6));
background: linear-gradient(#F2F2F2, #E6E6E6);
-pie-background: linear-gradient(#F2F2F2, #E6E6E6);
-moz-box-shadow: 0px 0px 3px #848484;
-webkit-box-shadow: 0px 0px 3px #848484;
box-shadow: 0px 0px 3px #848484;
border-right: solid 1px #848484;
border-bottom: solid 1px #848484;
border-left: solid 1px #848484;
border-top: solid 1px #848484;
behavior: url(/<domain>/script/cornerdesign/PIE.htc);
<div class="<css-classname>" style="margin-right: 0px; width:150px;height:26px;" onclick="doSomething();" >My Button</div>