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

I am using the background-color property in CSS media type print.

The problem is that Google Chrome does not show background-color or background-image in print preview.

How can this be solved?

share|improve this question

4 Answers

Chrome supports control of background colour / image printing via CSS. You can set the following CSS property on elements whose background should be printed:

-webkit-print-color-adjust: exact;

Normally of course, this is determined by browser settings - but Chrome allows web designers to determine how backgrounds are printed on a per-element basis...

Notes:

  • Requires Chrome 17 or higher.
  • The background of the body tag is not printed.

Thanks to Cron’s Web Tech Blog, where I first spotted it:-

http://blog.crondesign.com/2011/11/print-css-backgrounds-in-google-chrome.html

Also, this leads to some background (no pun intended!) info regarding the feature:-

http://code.google.com/p/chromium/issues/detail?id=107763

Hope this helps...

share|improve this answer
Nice find. Also note that there is currently a bug with it and CSS gradients. – Lea Verou Sep 12 '12 at 18:32
This doesn't appear to work any more... at least as of Chrome 22.0.1229.79. – Matt Van Andel Oct 6 '12 at 19:17
for me also its not working – user2045025 Feb 25 at 21:18
Have just tested (with Chrome 25.0.1364.97) and it still works fine for me. One thing to look out for though is whether the css is applied to 'screen' media only... (more info: w3.org/TR/CSS2/media.html) – tranquil tarn Feb 26 at 13:41

I think the issue is not with your code, but with Chrome: there is no option to print background (images or colors) : see http://www.google.com/support/forum/p/Chrome/thread?tid=17a4ac343580c8d3&hl=en

With Firefox, the background images are not printed by default, but it can be activated in "Print... -> Page setup"

share|improve this answer
Good find. Earlier I was going bananas all over the web. – andrewk Jan 7 '12 at 9:57

You can try the developer tools in chrome to check which css rules applied in your DOM element. That will help you debug and fix the issue.

share|improve this answer
That doesn't work for print styles. – SooDesuNe Apr 25 '12 at 17:14

FYI the !important flag may help.

I tried to debug why I was getting no colors for hours until I figured out that somehow, chrome must have been deferring to a different background-color statement.

background-color:red !important

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.