UNPKG

doiuse

Version:

Lint CSS for browser support against caniuse database

14 lines (12 loc) 389 B
/** * The `print-color-adjust` (or `-webkit-print-color-adjust` as prefixed in WebKit/Blink browsers) property is a CSS extension that can be used to force printing of background colors and images. * * See: https://caniuse.com/css-color-adjust */ /** * @type {import('../features').Feature} */ export default { 'print-color-adjust': true, '-webkit-print-color-adjust': true, };