Forums

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

Home Forums CSS Drop Shadowing Correctly Re: Drop Shadowing Correctly

#116855
Paulie_D
Member

@Watson90

You mean:

-moz-box-shadow: 0px 1px 3px #888;
-webkit-box-shadow: 0px 1px 3px #888;
box-shadow: 0px 1px 3px #888;

Always gotta put the unprefixed last. :)

…and does #888 = rgba(0, 0, 0, 0.3) ?