How do you drop shadow?
Beside this, what is a drop shadow effect?
In graphic design, a drop shadow is a visual effect consisting of a drawing element which looks like the shadow of an object, giving the impression that the object is raised above the objects behind it. Softening the edges of the shadow.
Accordingly, how do you do a drop shadow in CSS?
To create a simple drop shadow, add the following box-shadow property to box1 . The first value ( 5px ) is the horizontal offset, or how far to the right the shadow falls. The second value ( 10px ) is the vertical offset, or how far down the shadow falls. The third value ( #000 ) is the color of the shadow.
The drop shadow code: box-shadow:5px 5px 5px #999; The first value (5px) controls the x-offset (horizontal width of shadow on right side) The second value (5px) controls y-offset (vertical width of shadow on the bottom) The third value (5px) controls the blur distance (width of the shadow)