/
๐Ÿ“

Style

webstyle
On this page
  • Implement the black and white mode on the whole website

Implement the black and white mode on the whole website

grayscale

css
<style>
html {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
_filter:none;
}
</style>
Edit this page
logo
Code-related notes and snippets