如何打印符合定义的纸张尺寸的内容?

时间:2018-07-05 06:46:52

标签: html css printing

在div中显示的内容适合每页而又没有任何空白页的情况下,如何很好地打印?

 @page {
        width: 1.97in;
        height: 1.57in;
        margin: 0;
        padding: 0;
    }
.label{
        padding: 0;
        border-collapse: collapse;
        width: 1.97in;
        height: 1.57in;
        float: left;
        display: block;
        clear: both;
        overflow: hidden;
        border-top: 1px dotted;
        page-break-after: always;
        border-bottom: 1px dotted;
    }

这是我的标签打印机设置 enter image description here

我想将内容打印为标签贴纸,但是在打印时始终显示多余的空白。我该如何配置?

1 个答案:

答案 0 :(得分:0)

您可以编辑媒体打印

@page {
    width: 1.97in;
    height: 1.57in;
    margin: 0;
    padding: 0;
}
@media print {
    html, body {
        width: 1.97in;
        height: 1.97in;
    }
}