Print Background colours in Chrome
Asked Answered
G

3

62

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?

Godsey answered 6/3, 2010 at 11:54 Comment(3)
superuser.com/questions/117162/…Hiram
Chrome now allows -webkit-print-color-adjust:exact; in the element CSS to print the background.Nutcracker
See similar question #5355617Seventh
M
110

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.

Monroemonroy answered 6/3, 2010 at 11:57 Comment(3)
Also, keep in mind that a vast majority of browsers disables background colors and images by default.Monochloride
Does 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 pdfMuskogee
Can confirm that Chrome still supports -webkit-print-color-adjust:exact;. Works like a charm.Lading
F
38

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).

Findley answered 14/10, 2016 at 17:58 Comment(1)
Equivalent with keeping media separated by style grouping: <style type="text/css" media="print"> body { -webkit-print-color-adjust: exact; } </style>Baste
L
6

Chrome > Print (cmd P) > click More Settings > Options: check Background graphics

Chrome Print Preview

Loveliesbleeding answered 24/2, 2020 at 23:58 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.