I am trying to print a PHP generated document in chrome, on the browser it looks fine Link to the page I want to print But my printer will not print any coloured backgrounds, can anyone offer any suggestions please? Can I do this with CSS?
Asked
Active
Viewed 6.1k times
61
-
1http://superuser.com/questions/117162/printing-background-colours-in-chrome – random Mar 23 '11 at 23:10
-
7Chrome now allows `-webkit-print-color-adjust:exact;` in the element CSS to print the background. – Eduardo Molteni Aug 08 '12 at 14:20
-
See similar question http://stackoverflow.com/questions/5355117/print-css-backgrounds-in-safari-chrome/9339257 – Julien Kronegg Mar 28 '13 at 07:14
3 Answers
109
You adjust in the browser, whether the background colors and images are printed. See your browsers printing options.
Google Chrome offers this feature starting from version 26 (march 2013).
Also starting from version 17, Chrome allows changing the background print behavior programmatically by using -webkit-print-color-adjust:exact;
in the element CSS to print the background.
-
1Also, keep in mind that a vast majority of browsers disables background colors and images by default. – Xr. Mar 06 '10 at 11:59
-
-
17Does Google Chrome still support this option? I'm seeing the option in the print dialog, but the background colors are still not showing up in the pdf – Jeremy Moritz Aug 30 '14 at 18:30
-
3Can confirm that Chrome still supports `-webkit-print-color-adjust:exact;`. Works like a charm. – Zze Aug 16 '20 at 20:57
36
Gordon's answer is great, but for people whose CSS skills are rusty, here's a more complete example.
Put the following in your document's <head>
section.
<style type="text/css">
@media print { body { -webkit-print-color-adjust: exact; } }
</style>
By the way, although Chrome/Chromium's print dialog now has a Background graphics
checkbox, it only seems to work if you do not click Print using system dialog
(observed with Chromium in Linux).

Brent Bradburn
- 51,587
- 17
- 154
- 173
-
1Equivalent with keeping media separated by style grouping: `````` – Neil Gaetano Lindberg Oct 28 '19 at 18:57