Tail Box Shadow Bottom

Creating a box shadow at the bottom with a tail effect is simple and exciting. Attaching multiple shadows creates a stunning effect by varying the opacity.

Box Shadow Properties

Inset
Color
Shadow 0
Shadow 1
Shadow 2
Shadow 3
Shadow 4
Box Shadow

Element Properties

Color

Box Shadow CSS

box-shadow: 0px 5px 0px 0px rgba(65,117,5,1),
0px 10px 0px 0px rgba(65,117,5,0.6),
0px 15px 0px 0px rgba(65,117,5,0.4),
0px 20px 0px 0px rgba(65,117,5,0.2),
0px 25px 0px 0px rgba(65,117,5,0.1);

Element CSS

.element {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 10px;
    box-shadow: 0px 5px 0px 0px rgba(65,117,5,1),
0px 10px 0px 0px rgba(65,117,5,0.6),
0px 15px 0px 0px rgba(65,117,5,0.4),
0px 20px 0px 0px rgba(65,117,5,0.2),
0px 25px 0px 0px rgba(65,117,5,0.1);
  }
  

Box Shadow Property Tips

We are changing the Y offset by altering the opacity pitches to a tremendous blaze.