Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Trouble with Box Shadow on Rollover (:hover) Re: Trouble with Box Shadow on Rollover (:hover)

#91686
standuncan
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.