
Adding class to BUTTON element and not working in IE7
Hello all
I have used css3pie solution to have shadow and border radius as used in the official site.
http://css3pie.comBut it add this class to my element and does not display anything, instead removed my all styles and shows it blank. I am writing the css code below :
button
{
padding:3px 5px;
font-weight: bold;
border: none;
color:#d1d2d4;
background:#505253 url(~/application/modules/Core/externals/images/buttonbg.gif);
background-repeat: repeat-x;
background-position: 0 0; *padding:0; font-size:20px;font-family: archersemibold;
-webkit-box-shadow: #5b5b5c 0 0 12px;
-moz-box-shadow: #5b5b5c 0 0 12px;
box-shadow: #5b5b5c 0 0 12px; text-transform:uppercase;
behavior: url(~/public/PIE.php);
}
NOTE : this is not for only button, the problem is for every html element.
FILE IS ATTACHED FOR PREVIEW
Thank in advance, please provide me any solution or i am making any mistake to incorporate it.