<!doctype html> <html> <head> <meta charset="utf-8"> <title>print Geovin Du</title> <style type="text/css" media="screen"> /* https://www.w3.org/TR/css-page-3/ https://developer.mozilla.org/en-US/docs/Web/CSS/:first https://dev.opera.com/articles/ https://www.quackit.com/css/at-rules/css_page_at-rule.cfm https://developers.google.com/web/tools/chrome-devtools/css/ 塗聚文 注:Firefox,Safari,Internet Explorer,Google Chrome,Opera 是默認的頁眉是網頁title 頁腳:是第幾頁/共幾頁. 只有Microsoft Edge沒有默認的頁眉,頁腳 */ /*應用於Microsoft edge*/ .heade,.bottom{display:none;} </style> <style type="text/css" media="print"> /*每一頁 若是沒有另外自定義的話 */ @page {margin-left: 50px; margin-top: 100px;} /*第一頁*/ @page :first { margin-left: 50%; margin-top: 50%; } /*分頁標記*/ .geovindu{ page-break-after: always; } .heade {margin-top: 10px;} </style> </head> <body> <script type="text/javascript"> document.querySelector("button").onclick = function () { window.print(); } </script> <div id="geovindu" class="geovindu"> <div class="heade">頁眉:塗家村</div> <div class="conent"> First Page. </div> <div class="bottom">第一頁</div> </div> <div id="geovindu" class="geovindu"> <div class="heade">頁眉:塗家村</div> <div class="conent"> Second Page. </div> <div class="bottom">第二頁</div> </div> <button>Print!</button> </body> </html>