Home › Forums › CSS › Trouble with Box Shadow on Rollover (:hover) › Re: Trouble with Box Shadow on Rollover (:hover)
December 1, 2011 at 2:21 pm
#91686
Member
You need to use the other browser prefixes to make it cross-browser compatible, see below:
Using different value examples, but all achieving the same look:
-webkit-box-shadow:0 0 8px rgba(0,0,0,.40);
-moz-box-shadow:0 0 8px rgb(153,153,153);
-o-box-shadow:0 0 8px #999;
box-shadow:0 0 8px #999999;
*Note: This will not work with any older versions of IE.