打印页面自动去除页眉页脚

在HTML页面中加入

1 <style media="print">
2     @page {
3         size: auto; /* auto is the initial value */
4         margin: 0mm; /* this affects the margin in the printer settings */
5     }
6 </style>
原文地址:https://www.cnblogs.com/chizhida/p/7943299.html