I have the following css for headers:
h1 {
color: white;
text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
}
This is the css I use for print:
@media print {
h1 {
-webkit-print-color-adjust:exact;
}
}
When I try to print it with Chrome, I only get a blank box.