Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 250 Bytes

css-print.md

File metadata and controls

10 lines (6 loc) · 250 Bytes

Styling A Webpage for Print

Create a stylesheet for the print CSS. Make sure it is below all other CSS.

First, add -webkit-print-color-adjust:exact; to the top of the @media print

@media print {
	* {-webkit-print-color-adjust:exact;}
}