I have a webpage with a printer-specific stylesheet that I use to make sure it uses zero color ink and as little black as possible. However, there is one very important element that's not text which I need to show up: the logo, which is kept in and displayed by CSS. By default, Chrome (and probably Chromium-based browsers) does not print "Background graphics", which is any color or image brought in by a stylesheet. Is there any meta tag or other such method I can use to tell the browser that I've made sure the page is printer-friendly? I tried displaying it in an <IMG>
but that proved too difficult to position.
I'm looking for something in the same vein as using <META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=utf-8"/> <META CHARSET="utf-8" />
to tell it I've made this in UTF-8, or <META PROPERTY="og:locale" CONTENT="en_US" />
to tell it that this is US English, or <META NAME="viewport" CONTENT="initial-scale=1.0, user-scalable=no" />
to tell it that this is a mobile-friendly site. All these, I think, are so it doesn't have to make assumptions, and I should hope that there's a printer-friendliness tag out there.