mhulse / css-issues

Practical CSS code snippets and examples.
11 stars 1 forks source link

Grayscale printing #163

Open mhulse opened 6 years ago

mhulse commented 6 years ago
[container="print"] * {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}