使用javascript以横向模式打印网页。打印时,我想:
答案 0 :(得分:10)
您可以使用@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输出机制。