gpt4 book ai didi

javascript - 如何使用 javascript 和 css 在 Internet Explorer 中设置页面大小和打印页边距?

转载 作者:行者123 更新时间:2023-11-28 01:48:06 26 4
gpt4 key购买 nike

我使用了下面的代码但没有用。

@page {
尺寸:A4;
margin :0;
}

最佳答案

window.print();
    body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background-color: #FAFAFA;
font: 12pt "Tahoma";
}
* {
box-sizing: border-box;
-moz-box-sizing: border-box;
}
.page {
width: 210mm;
min-height: 297mm;
padding: 20mm;
margin: 10mm auto;
border: 1px #D3D3D3 solid;
border-radius: 5px;
background: white;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.subpage {
padding: 1cm;
border: 5px red solid;
height: 257mm;
outline: 2cm #FFEAEA solid;
}

@page {
size: A4;
margin: 0 !important;
}
@media print {
html, body {
width: 210mm;
height: 297mm;
}
.page {
margin: 0;
border: initial;
border-radius: initial;
width: initial;
min-height: initial;
box-shadow: initial;
background: initial;
page-break-after: always;
}
}
<div class="book">
<div class="page">
<div class="subpage">Page 1/2</div>
</div>
<div class="page">
<div class="subpage">Page 2/2</div>
</div>
</div>

了解更多信息 - CSS to set A4 paper size

关于javascript - 如何使用 javascript 和 css 在 Internet Explorer 中设置页面大小和打印页边距?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50094196/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com