The drop-shadow() CSS function applies a drop shadow effect to the input image. Its result is a <filter-function>.
The drop-shadow() CSS function applies a drop shadow effect to the input image. Its result is a <filter-function>.
A drop shadow is effectively a blurred, offset version of the input image's alpha mask, drawn in a specific color and composited below the image.
Note: This function is somewhat similar to the box-shadow property. The box-shadow property creates a rectangular shadow behind an element's entire box, while the drop-shadow() filter function creates a shadow that conforms to the shape (alpha channel) of the image itself.
drop-shadow(offset-x offset-y blur-radius color)
The drop-shadow() function accepts a parameter of type <shadow> (defined in the box-shadow property), with the exception that the inset keyword and spread parameters are not allowed.
offset-x (required)The horizontal offset for the shadow, specified as a <length> value. Negative values place the shadow to the left of the element.
offset-y (required)The vertical offset for the shadow, specified as a <length> value. Negative values place the shadow above the element.
blur-radius (optional)The shadow's blur radius, specified as a <length>. The larger the value, the larger and more blurred the shadow becomes. If unspecified, it defaults to 0, resulting in a sharp, unblurred edge. Negative values are not allowed.
color (optional)The color of the shadow, specified as a <color>. If unspecified, the value of the color property is used.
/* Black shadow with 10px blur */ drop-shadow(16px 16px 10px black)
/* Reddish shadow with 1rem blur */ drop-shadow(.5rem .5rem 1rem #e23)
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
drop-shadow |
18 | 12 | 35 | No | 15 | 6 | 4.4 | 53 | 35 | 14 | 6 | 6.0 |
The other <filter-function> functions available to be used in values of the filter and backdrop-filter properties include:
blur()brightness()contrast()grayscale()hue-rotate()invert()opacity()saturate()sepia()box-shadow propertytext-shadow property
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/drop-shadow