Box Shadow Left

This example shares the idea of box shadow on the left side of an element only. You can adjust the values of CSS box shadow property with the box shadow generator to get your desired effect.

Box Shadow Properties

Inset
Color
Shadow 0
Box Shadow

Element Properties

Color

Box Shadow CSS

box-shadow: 0px 19px 38px 0px rgba(0,0,0,0.3);
CSS

Element CSS

.element {
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    border-radius: 10px;
    box-shadow: 0px 19px 38px 0px rgba(0,0,0,0.3);
  }
  
CSS

Box Shadow Examples