cssbox-shadow

How to apply box-shadow on all four sides?


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 the x and y offsets. Try this:

    -webkit-box-shadow: 0 0 10px #fff;
            box-shadow: 0 0 10px #fff;
    

    You might also find CSS3 generators useful: css3.me, css3maker, css3generator, etc...