How To Print In A Different Background Color

[Solved] How To Print In A Different Background Color | C - Code Explorer | yomemimo.com
Question : How to print in a different background color.

Answered by : rich-rabbit-vfx2oo15w3o6

body { color: black; background-color: grey;
}
@media print { body { background-color: transparent; }
}

Source : https://web.dev/learn/design/media-queries/ | Last Update : Sun, 28 Nov 21

Answers related to how to print in a different background color

Code Explorer Popular Question For C