I have some simple CSS:
#someElement { background-color:black; color:white; }
It looks ok in the browser, but when I go to print it
For show background colors in firefox & IE
@media print { body{ -webkit-print-color-adjust: exact; /*chrome & webkit browsers*/ color-adjust: exact; /*firefox & IE */ } }