HTML CSS打印页面删除顶部和底部的空白

时间:2018-09-13 18:56:12

标签: html css

我正在尝试打印HTML页面,但很难摆脱页面顶部和底部的多余空白。

这是打印预览的外观(箭头指向空格):

enter image description here

和我的CSS:

@@media print {
        body {
            margin: 5px;
        }

        .body.menubar-top {
            padding-top: 0px;
        }

        .no-print {
            display: none;
        }

        #section-to-print, #section-to-print * {
            visibility: visible;
            margin-top: 0px;
            padding-top: 0px;
        }

        #section-to-print {
            /*position: absolute;*/
            /*left: 0;
            top: 0;*/
        }
    }

和页面代码:

    <div class="row" id="section-to-print" style="vertical-align:top">

    <div class="col-md" id="projectDetails">

        <div class="col-md-12">
            <h3 class="headerTitle">
                Main Title
            </h3>
        </div>

        <div class="col-md-12">
            <h4 class="headerTitle">
                Sub title
            </h4>
        </div>

        <div class="row">
            <div class="col-md-12">
                <h5>
                    Project Details
                </h5>
            </div>
        </div>

etc......

我已经有一段时间没有创建打印页面了,但是我确信这应该很简单。

1 个答案:

答案 0 :(得分:1)

您的代码看起来完全有效。我用您的代码制作了JSFiddle:

https://jsfiddle.net/a6fu1vcg/2/

例如,如果您有例如代码:

body {
  margin: 200px;
}

当您尝试打印时,它将被覆盖:

@media print {
        body {
            margin: 5px;
        }
}

打印文档的页边距为5px。

请确保您没有其他样式,例如!important会覆盖您的打印样式