<!DOCTYPE html>
<html>
<head>
<title>打印</title>
<style type="text/css">
html,body,img{
padding: 0px;
margin: 0px;
}
@media print {
.print { display:block; }
.noprint { visibility:hidden }
@page {
size: auto;
margin: 0mm;
}
}
</style>
</head>
<body>
<div style="width: 999px;" class="print">
<img width="100%" src="20191106164608.jpg">
</div>
<button class="noprint" onclick="prints()">打印</button>
</body>
<script type="text/javascript">
function prints() {
window.print()
}
</script>
</html>
打印去除页眉页脚
最新推荐文章于 2025-06-07 15:23:25 发布

2506

被折叠的 条评论
为什么被折叠?



