Skip to content

Instantly share code, notes, and snippets.

@rintoug
Created March 25, 2017 15:52
Show Gist options
  • Save rintoug/daaadc7b8d47b5dfe11653a9c528fa7b to your computer and use it in GitHub Desktop.
Save rintoug/daaadc7b8d47b5dfe11653a9c528fa7b to your computer and use it in GitHub Desktop.
Cross-Browser Image Grayscale with CSS
<svg xmlns="http://www.w3.org/2000/svg">
<filter id="grayscale">
<feColorMatrix type="matrix" values="0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"/>
</filter>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment