I want to print a watermark/background image on the print document. The watermark/background image would not be visible on screen.

link|improve this question

50% accept rate
feedback

3 Answers

up vote 1 down vote accepted

This is coming a bit late, but you might getting away with absolutely positioning your image, bring down the z-index to -1 and then give it a class specific to print media like .printOnly. With that you can style your @media all

.printOnly{
    display:none;
}

…then in your @media print just leave that styling open

.printOnly{

}

As for printing with different browsers I'm getting images out from FF, Safari and Opera.

link|improve this answer
feedback

I think this is not possible:

"most browsers are configured not to print backgrounds" (the reason is, to save toner-ink)

link|improve this answer
what about having any div background image – vineet1982 Jul 17 '11 at 18:58
1  
No CSS-backgrounds will be printed. You have to include the image using the <img>-tag, in order to print it—and not even this is reliable, as the user may choose, not to print images at all. – feeela Jul 17 '11 at 19:01
background:white is the only value browsers respect. – Gerben Jul 17 '11 at 19:07
@feeela. Which browsers provide an option to not print images? I haven't seen this option in any browser. – Gerben Jul 17 '11 at 19:11
@Gerben Ok, maybe described in a wrong way. Opera let me hide any images—I would use that and then print the page. – feeela Jul 17 '11 at 19:16
feedback

A friend of mine had the exact same problem. He solved it by printing his document in IE9. He also said something about Opera not minding background images, so possible give a recent version of that a try too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.