.the-best-box-shadow {
-moz-box-shadow: 5px 5px 2px 2px #EFEFEF;
-webkit-box-shadow: 5px 5px 2px 2px #EFEFEF;
box-shadow: 5px 5px 2px 2px #EFEFEF;
}
- Horizontal offset: positive means shadow will be to the right of the box, and negative values to the left of the box.
- Vertical offset: positive means shadow will be below the box, and negative values above the box.
- Blur radius (optional): higher values increase bluriness of the shadow (minimum/default 0 for a crisp shadow).
- Spread radius (optional): higher values increase the size of the shadow; negative values reduce the size.