I have the following CSS,
#duplicateCopy {
-webkit-transform:rotate(-20deg);
-moz-transform:rotate(-20deg);
-o-transform:rotate(-20deg);
transform:rotate(-20deg);
color:#CCC;
font-weight:bold;
letter-spacing:5px;
position:absolute;
z-index:1000;
top:35%;
left:15%;
opacity:0.2;
filter:alpha(opacity=50);
}
and also the following div in my html page
<div id="duplicateCopy">
<p style="font-size:70px">Duplicate Copy</p>
</div>
The above bit of css used to display a water mark in html page. The watermark is working fine in browser window. But while am taking print out the watermark text is not visible. How can i make watermark text visible for print?