Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a javascript backed 'print' button on my webpage where the user can print the webpage.

This works ok except the background color of various elements does not print.

Is there a method of printing a web page whereby the background color of the various elements will print?

share|improve this question

2 Answers

up vote 7 down vote accepted

Printing the background is browser setting and not something you can control programatically through client side scripting.

share|improve this answer
+1 Just imagine people trying to print pages with dark background colors. So many $$$ in ink/toners just disappearing... – Arve Systad May 7 '09 at 21:12

Even if you could, you shouldn't. There's a reason browsers default to ignore the background when printing - ink is expensive!

Under the definition for "background": A position or area of relative inconspicuousness or unimportance.

Unimportance. It's not important enough to override the local user's decision to save money. If it needs to be printed, it's not really part of the background.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.