My goal is to enhance the printability of my website. The background color of the HTML document's body
is not white.
body {
background-color: #F8F6F6;
}
The issue lies in the fact that certain sections of the printed page, such as the margins and the area beyond the document's end, appear white, as illustrated below:
https://i.sstatic.net/nGYzS.png
Is there a way for me to alter the color of these regions?
Edit (clarification):
To clarify, I am seeking to change the color of the white areas in the image to#F8F6F6
, not vice versa.