I have some simple CSS:
#someElement {
background-color:black;
color:white;
}
It looks ok in the browser, but when I go to print it in Firefox it comes out as black text on a white background. I imagine this is some sort of ink-saving feature, but is there any way around it?
background-color
to fake a background color). Timing's answer has more explanation, but mursa's is simpler ... I wish one was clearly better, but given all that I'm honestly not sure which one I should accept. For now I have just removed the checkmark from Daniel A. White's answer (while it's technically accurate, people on SO are looking for solutions). – Furbelowcolor-adjust
property. 'color-adjust: exact'; There is an answer below that mentions that which should now be selected as the correct answer. – Medical