css print has background graphics

Solutions on MaxInterview for css print has background graphics by the best coders in the world

showing results for - "css print has background graphics"
Vianney
25 Feb 2020
1/* 
2This forces browsers to use background colors when user prints a web page.
3Even if they have Print Options Background Graphics turned off.
4
5Default value Economy
6
7Browser Support See
8https://developer.mozilla.org/en-US/docs/Web/CSS/color-adjust
9*/
10
11
12
13color-adjust: exact;
14-webkit-print-color-adjust: exact;