gpt4 book ai didi

javascript - 如何在 javascript print() 函数中设置字体大小

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

function printData()
{
var divToPrint=document.getElementById("myprinttd");

document.getElementById("myprinttd").style.fontSize = "2px";

newWin= window.open("");
newWin.document.write(divToPrint.outerHTML);
newWin.print();
newWin.close();
}

我正在使用上面的功能来打印屏幕。我想让字体变小并减少数据之间的空间,但我不能。任何人都可以提供帮助。提前致谢

最佳答案

打印输出看起来与预期不同的一个原因是,除了您正确设置的 fontSize 属性之外,其他父元素及其 CSS 规则也会影响元素的外观。

outerHTML 仅捕获直接附加到所选元素的样式,因此某些样式信息可能会丢失。

关于javascript - 如何在 javascript print() 函数中设置字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36305852/

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