
Re: PIE JavaScript edition – Attach from CSS
Hello guys, sorry for being dumb but how we must use this on css?
I try to use in css under this example:
.secondary,.primary {
float: left;
margin-right: 9px;
font-family: Verdana, Arial, Helvetica, sans-serif;
box-shadow: 0 0 2px 1px #ccc;
padding: 3px 7px;
font-weight: normal;
font-size: 11px;
color: #f5f5f5;
cursor:pointer;
border-radius:4px;
position:relative;
z-index:1;
background: -moz-linear-gradient(center top , #FF9172 0%, #FF0000 100%);
background: -webkit-linear-gradient(top, #FF9172 0%, #FF0000 100%);
background: -o-linear-gradient(top, #FF9172 0%,#ff0000 100%);
background: -ms-linear-gradient(top, #FF9172,#ff0000 100%);
-pie-background: linear-gradient(top, #FF9172, #ff0000 100%);
-pie: expression(this._pieId || window.PIE && window.PIE.attach(this));
}
I have main PIE.js in head and that document ready function for applying pie to my elements ...but unfortunately it is not working

I must use a specific css in head only for pie?
Thank's.