Skip to main content
DevTools24

CSS Box Shadow Generator

Create beautiful box shadows with an intuitive visual editor. Stack multiple shadows, use presets, and customize every property.

Shadow 1
box-shadow: 0px 4px 15px 0px rgba(0,212,255,0.3);

CSS Box Shadow - Technical Details

The box-shadow CSS property adds shadow effects around an element's frame. You can set multiple shadow effects separated by commas. Each shadow is described by X and Y offsets, blur and spread radii, and color.

Command-line Alternative

/* Single shadow */\nbox-shadow: 0px 4px 15px rgba(0,0,0,0.2);\n\n/* Multiple shadows */\nbox-shadow: 0px 4px 6px rgba(0,0,0,0.1), 0px 2px 4px rgba(0,0,0,0.06);\n\n/* Inset shadow */\nbox-shadow: inset 0px 2px 4px rgba(0,0,0,0.25);

Reference

View Official Specification