如何使用jQuery打印具有A5大小的DIV内容并保留css?
我使用的是printThis.js,但打印预览没有CSS对齐方式,页面大小不同。
发布于 2021-08-17 15:34:38
你不能在printThis中做到这一点(我是作者),但是你可以使用CSS。
看看这个来自http://www.w3.org/TR/css3-page/#size的CSS3示例
/* style sheet for "A4" printing */
@media print and (width: 21cm) and (height: 29.7cm) {
@page {
margin: 3cm;
}
}
/* style sheet for "letter" printing */
@media print and (width: 8.5in) and (height: 11in) {
@page {
margin: 1in;
}
}
/* A4 Landscape*/
@page {
size: A4 landscape;
margin: 10%;
}https://stackoverflow.com/questions/68802582
复制相似问题