← All tutorials

GoCareerGo Tutorials

CSS Tutorial

Selectors, box model, Flexbox, Grid, animation and responsive design.

box-shadow

Adds a drop shadow around an element's box — offset, blur, spread and color.

.card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* offset-x | offset-y | blur-radius | spread-radius | color */