0
イメージをテーブルの裏に(ウォーターマークとして)置いて、それを印刷したいのですが(IEを使用していますが、背景印刷を有効にする)。バックグラウンドclausuleを使用せずにテキスト(またはテーブル)の背後にイメージを置く方法html
私はimg
タグを使用して、テーブルの後ろに置くために位置(相対、絶対および固定)で再生しようとしていました。
これは私が開く方法です。ここでページを印刷
function PrintThisDiv(id) {
var HTMLContent = document.getElementById(id);
var Popup = window.open('about:blank', id);
Popup.document.writeln('<html><head><title>Imprime Tiquetes</title>');
Popup.document.writeln('<style type="text/css" media="print">');
//Popup.document.writeln('.no-print{display: none;}');
//Popup.document.writeln('@page{margin: 0;}');
Popup.document.writeln('</style>');
Popup.document.writeln('</head><body style:"position:fixed" onload = "window.print();window.close();">');
Popup.document.writeln("<img src='../Img/reimpreso.PNG' width=100% height=100% alt='Repeating Background Image' style='position:relative' />");
//Popup.document.writeln('<a href="javascript:;" onclick="window.print();">Imprimir</a>');
Popup.document.writeln(HTMLContent.innerHTML);
Popup.document.writeln('</body ></html>');
Popup.document.close();
Popup.focus();
}
テーブル
<table width='200px' cellspacing='0' cellpadding='0' style=\"border: thin solid #000000; font-family: 'Times New Roman'; font-size: 8.25px\">