2014-06-23 116 views
0

我需要打印網頁內容(HTML/CSS)。我需要做的一件事是打印一些東西(頁碼,文檔標題)除了第一頁打印頁面:僅在第二頁上顯示內容?

有沒有辦法讓div(或其他元素)只出現在Pages> = 2上?

我沒有任何手動分頁符

jQuery的可用於

回答

0

的CSS @page指令與:first應用CSS到HTML打印

我舉一個例子的第一頁與#header#footer可能會暗示你

@media print { 
    @page { 
     /* Styles for every page other than first page */ 
     #header { 
      position: fixed; 
      display: block; 
      top: 0; 
     } 
     #footer { 
      position: fixed; 
      display: block; 
      bottom: 0; 
     } 
    } 
    @page :first { 
     /* override the styles for the first page */ 
     #header { 
      display: none; 
     } 
     #footer { 
      display: none; 
     } 
    } 
}