在 PDF 中管理頁眉、頁腳和分頁符號
分頁可能會讓人感到困惑。
如果正確應用,page-break-after
CSS規則將始終有效。 但是,如果您的樣式表將 div
從 display:block
改變,此規則將不適用。 請確保將 page-break-after
規則應用於區塊級元素,最好是 body 標籤的直接子元素 div
。
以下的 HTML 示例展示了
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Print Page Breaks with Header and Footer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
position: fixed;
width: 100%;
text-align: center;
background-color: #f1f1f1;
padding: 10px 0;
}
header {
top: 0;
}
footer {
bottom: 0;
}
.content {
margin: 150px 20px; /* Adjust margins to prevent content overlap with header and footer */
}
.page-break {
page-break-after: always;
display: block; /* Ensure it remains a block-level element */
}
</style>
</head>
<body>
<header>
<h1>Document Title</h1>
<p>Header Content</p>
</header>
<footer>
<p>Footer Content</p>
</footer>
<div class="content">
<div class="page-break">
<h2>Section 1</h2>
<p>This is the first section. After this section, there will be a page break.</p>
</div>
<div class="content">
<div class="page-break">
<h2>Section 2</h2>
<p>This is the second section. The header and footer continue to be displayed, and the content starts on a new page.</p>
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Print Page Breaks with Header and Footer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header, footer {
position: fixed;
width: 100%;
text-align: center;
background-color: #f1f1f1;
padding: 10px 0;
}
header {
top: 0;
}
footer {
bottom: 0;
}
.content {
margin: 150px 20px; /* Adjust margins to prevent content overlap with header and footer */
}
.page-break {
page-break-after: always;
display: block; /* Ensure it remains a block-level element */
}
</style>
</head>
<body>
<header>
<h1>Document Title</h1>
<p>Header Content</p>
</header>
<footer>
<p>Footer Content</p>
</footer>
<div class="content">
<div class="page-break">
<h2>Section 1</h2>
<p>This is the first section. After this section, there will be a page break.</p>
</div>
<div class="content">
<div class="page-break">
<h2>Section 2</h2>
<p>This is the second section. The header and footer continue to be displayed, and the content starts on a new page.</p>
</div>
</div>
</body>
</html>
如果您需要在每個 PDF 頁面中重複 表格標題和頁腳,請參閱這篇文章: 在 HTML PDF 中新增或避免分頁符號
如果上述步驟未能解決您的問題,請嘗試以下方法:
1. 簡化問題
如果您的內容長度不一,請測試不同長度的內容,以確保您使用的是正確的 Html/CSS。 This工具可以用來協助。
2. 驗證您的 HTML 和 CSS
CSS 驗證器可以用來檢查使用的CSS樣式。
HTML驗證器可用於協助您驗證您的HTML輸入。
此外,您可以請您的網頁設計師檢查您的HTML,同時追蹤變更。
另一方面,披露部分的定位受到許多因素的影響,包括表格結構、tfoot等等。 因此仔細檢查您的HTML字符串和結構肯定會有所幫助。
3. 在 Chrome 的列印預覽中檢查輸出
IronPDF 將輸出一個與桌面版 Chrome 網頁瀏覽器完全相同的 PDF,這要歸功於 IronPDF 使用的 Chrome PDF 渲染引擎。
因此,您可以透過 Chrome 列印預覽檢查您的 HTML 外觀,並相應調整 HTML。 這可能需要反覆試驗,但這是調試 HTML 的最簡單方法。
了解如何透過 Chrome 列印預覽來調試您的 HTML:像素完美的HTML格式化
查看這篇文章以獲取更多有關Chrome PDF渲染引擎的資訊:什麼是IronPDF的Chrome Renderer?
4. 使用 Chrome 開發者工具
或者,您可以在Chrome開發者工具中使用 Inspect 查找元素中計算後的最終CSS。 這將提供字串中每個HTML元素的更多細節。
5. 使用 IronPDF 渲染 HTML
將您的最終 HTML 字串或 HTML 檔案發送到 IronPDF Chrome Renderer 並使用 RenderHtmlAsPdf
()或 RenderHtmlFileAsPdf()使用此方法來創建您的PDF文件。
您可能需要向渲染器指定一些渲染選項,以便細調您的輸出PDF以及渲染操作。 看到这个文章了解更多。