1box-shadow: 3px 3px 6px 5px #ccc;
2
3or
4
5box-shadow: 0px 5px 17px -7px rgba(0, 0, 0, 0.75);
1#Box-shadow-example {
2Box-shadow:0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
3}
4<!-- offset-x, offset-y, (blur-radius and/or spread-radius=optional) and color-->
1/*
2box-shadow: horizontal-offset | vertical-offset | blur-distance | spread-of-shadow | color
3
4Horizontal offset: Negative values position the shadow to the left of the box.
5Vertical offset: Negative values position the shadow to the top of the box.
6Blur distance: If omitted, the shadow is a solid line like a border.
7Spread of shadow: Positive value will cause shadow to expand in all directions, and negative value will make it contract.
8 */
9box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
10
1-webkit-box-shadow: 5px 5px 15px 5px #000000;
2 -moz-box-shadow: 5px 5px 15px 5px #000000;
3 box-shadow: 5px 5px 15px 5px #000000;
1/* add depth to your webpage */
2
3box-shadow: <x-offset> <y-offset> <blur-radius> <spread-radius> <color>;
4