js打印去除页眉页脚问题 只需要css即可
2019-04-23 本文已影响0人
Bior
百度网上一大堆解决方案,我试了都没有用,最后在Stack Overflow上找到了解决方案,分享给大家。
<style media="print" type="text/css">
.noprint {
display:none
}
.print {
margin-left:25%
}
@("@")page
{
size: auto; /* auto is the initial value */
margin: 0mm; /* this affects the margin in the printer settings */
}
</style>