I have a box, more specifically a div that will serve as a log in box on a front page of a website. I apply the CSS3 effects moz, webkit, and box-shadow. The method works perfectly in all browsers EXCEPT for IE. I have IE 7. What can I do to make this compatible with all internet explorer browsers 6 and up?
#login_portal {
font-weight: bold;
text-decoration: none;
margin-right: 125px;
margin-left: 125px;
height: auto;
padding: 10px;
-moz-box-shadow: 0 0 5px 5px #888;
-webkit-box-shadow: 0 0 5px 5px#888;
box-shadow: 0 0 5px 5px #888;
border: 1px solid #CCC;
}
IE9 should work just fine. For IE6-7-8 you can use http://css3pie.com/ but then you need to think if it really makes sense to make worse the already poor performance in IE for a simple box-shadow…