打印没有页面信息的HTML页面

时间:2016-06-27 10:39:20

标签: html css

我正在尝试打印没有页面信息的网页。

使用页面信息我的意思是:页面的页面,页面的URL和打印页面以及打印日期。

我正在使用以下代码:

<style type="text/css" media="print">
 @page 
 {
  size: auto;   /* auto is the initial value */
  margin-bottom: 0mm;  /* this affects the margin in the printer settings */
  margin-top: 1mm;  /* this affects the margin in the printer settings */
 }
</style>

此代码似乎适用于Google Chrome。但是在Mozilla Firefox中我仍然可以获得页面信息&#39;。

所以我的问题是,为什么这些代码不适用于其他浏览器(Mozilla Firefox)以及如何解决这个问题,以便它可以在Mozilla Firefox和其他浏览器上运行?

1 个答案:

答案 0 :(得分:0)

虽然在很多情况下这是由浏览器端设置决定的,但您可以通过使用它来表现更多:

@media print {
    #Header, #Footer { display: none !important; }
}

Source