I want to design a box with some transparency in it in CSS or CSS3 which must work in IE8, I made this code, it is working fine in other browsers, but in IE8 the box is becoming completely transparent, how to fix this problem?
.price_tag { position: absolute; height: 146px; width: 295px; left: 210px; top: 241px; background-color: rgba(221, 221, 221, 0.7); border-radius: 8px; z-index: 200; -webkit-box-shadow: -2px -2px 6px rgba(255,255,255, 1) inset, 2px 0px 4px rgba(255,255,255,1) inset; box-shadow: -2px -2px 6px rgba(255,255,255, 1) inset, 2px 0px 4px rgba(255,255,255,1) inset; behavior: url(pie/PIE.htc); }