Ammar Alyousfi
Ammar Alyousfi

Reputation: 4382

How to change the background color of a HTML page for printing?

I want to make my website properly printable. The body of the HTML document has a background color other than white.

body {
  background-color: #F8F6F6;
}

The problem is that some parts of the background of the printed page (the margins and the part after the document end) are white as shown below:

How can I change the color of these areas?


Edit (clarification):

I want to change the color of white areas in the picture to #F8F6F6, not the opposite.

Upvotes: 0

Views: 1287

Answers (1)

Farhad Bagherlo
Farhad Bagherlo

Reputation: 6699

css printing

   @media print{
     body {
       background-color: #FFFFFF;
     }
   }

Upvotes: 4

Related Questions