Issue
I'm trying to apply a box-shadow
on all four sides. I could only get it on 2 sides:
Solution
It's because of x and y offset. Try this:
-webkit-box-shadow: 0 0 10px #fff;
box-shadow: 0 0 10px #fff;
edit (year later..): Made the answer more cross-browser, as requested in comments :)
btw: there are many css3 generator nowadays.. css3.me, css3maker, css3generator etc...
Answered By - Damb
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.