通过IE浏览器打印时,从打印页眉和页脚中隐藏URL和日期

时间:2019-03-01 06:22:37

标签: javascript css

我正在使用以下CSS隐藏打印页眉和页脚,该页眉和页脚在chrome中工作正常,但仍无法在IE中打印。

 <!DOCTYPE html>
     <html>
     <head>
    <title>Print Test</title>
    <style type="text/css" media="print">

 	@page :footer {color: #fff }
	 @page :header {color: #fff}
        @page 
        {
            size: auto;   /* auto is the current printer page size */
            margin: 0mm;  /* this affects the margin in the printer settings */
        }

        body 
        {
            background-color:#FFFFFF; 
            border: solid 1px black ;
            margin: 0px;  /* the margin on the content before printing */
       }
    </style>
    </head>
    <body>
    <div>Top line</div>
    <div>Line 2</div>
   </body>
   </html>

在通过IE浏览器进行打印时,仍然在页眉和页链接中打印页名和页数,并在页脚中打印日期。通过IE浏览器打印时可以用来隐藏的任何特定代码。请对此提供帮助。

0 个答案:

没有答案