gpt4 book ai didi

javascript - 使用 javascript 打印到硬拷贝 - 横向模式

转载 作者:技术小花猫 更新时间:2023-10-29 11:55:16 24 4
gpt4 key购买 nike

使用 javascript 以横向模式打印网页。打印时,我想:

  1. 设置边距
  2. 横向模式

最佳答案

您可以使用 @page CSS rule 标记打印页面的大小和边距:

/* In CSS, not JavaScript */
@page {
size: A4 landscape;
margin: 42pt 12pt;
}

@media print {
/* Define print-specific styles here, for example toning down the decoration
of hyperlinks and removing the navigation. */
a {color: inherit !important; text-decoration: none !important;}
nav {display: none;}
}

然而,browser support参差不齐——除了prince XML , 只有 IE8+ 和 Opera 支持。如果您想要对打印进行精确的跨浏览器控制,请考虑(通常是服务器端)PDF 输出机制。

关于javascript - 使用 javascript 打印到硬拷贝 - 横向模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7722453/

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