Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Thursday, March 11, 2021

Background color not showing in print preview

 The Chrome CSS property -webkit-print-color-adjust: exact; works appropriately.

media print CSS in the body:

@media print {
body {-webkit-print-color-adjust: exact;}
}