Skip to content

Instantly share code, notes, and snippets.

@molily
Last active June 7, 2022 05:13
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save molily/60fe900634801560cbd6 to your computer and use it in GitHub Desktop.
Save molily/60fe900634801560cbd6 to your computer and use it in GitHub Desktop.
SVG filter: White drop shadow
<filter id="dropshadow" x="0" y="0" width="200%" height="200%">
<feColorMatrix in="SourceAlpha" type="matrix"
values="-1 0 0 0 1, 0 -1 0 0 1, 0 0 -1 0 1, 0 0 0 1 0"
result="matrix"/>
<feGaussianBlur in="matrix" stdDeviation="2" result="blur"/>
<feComposite in="SourceGraphic" in2="blur" operator="over"/>
</filter>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment