【发布时间】:2023-02-01 00:58:38
【问题描述】:
我在我的角度 html 页面中使用以下媒体打印类:
@media print {
@page {
size: landscape !important;
orientation: landscape !important;
max-height: 100%;
max-width: 100%;
}
.no-print,
.no-print * {
display: none !important;
}
body {
-webkit-print-color-adjust: exact;
}
canvas {
height: auto;
width: auto;
}
.printClass {
display: inline-block;
}
}
但是,它总是尝试打印肖像。有谁知道我做错了什么?
【问题讨论】:
标签: javascript html css angular printing