31

我现在苦苦挣扎了几个小时,为什么@media print 不起作用,我什至在这个网站上搜索谷歌并没有任何帮助,所以这就是我发布这个问题的原因。我正在 Google chrome 打印预览(ctrl p)上对其进行测试,但我也打印到页面并且它保持空白。

我尝试在页面中制作一个单独的 css 文件和嵌入的 css 样式。

这是我的代码

标头

<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/print.css" media="print" />

HTML

<div id="bruikleenovereenkomst">
    <div id="blo_header">

    </div>

    <div id="blo_side_top"></div>
    <div id="blo_side_bottom"></div>
</div>      

CSS 普通样式

div#bruikleenovereenkomst {
    width:595px;
    height:842px;
    background-color:#fff;
    position:relative;
}

div#blo_header {
    width:100%;
    height:125px;
    background-color:#FBE983;
    z-index:9
}

div#blo_side_top {
    width:57px;
    height:420px;
    background-color:#B6CAE5;
    position:absolute;
    right:0;
    top:0;
    z-index:99;
}

div#blo_side_bottom {
    width:57px;
    height:420px;
    background-image:url(../images/leaflet.png);
    background-repeat:no-repeat;
    position:absolute;
    right:0;
    bottom:0;
    z-index:99;
}

CSS 打印样式 (print.css) 注意:div#bruikleenovereenkomst 只是一个用于测试的黑色块。

@media print{

    body {
        margin:0;
    }

    h1#logo {
        display:none;
    }

    ul#menu {
        display:none;
    }

    div#bruikleenovereenkomst {
        width:100%;
        height:500px;
        background-color:#000;
    }

    div#blo_header {
        display:none;
    }

    div#blo_side_top {
        display:none;
    }

    div#blo_side_bottom {
        display:none;
    }

}

我得到的只是一张空白页。

4

4 回答 4

44

如果您使用@media print,则需要在样式中添加!important,否则页面将使用元素的具有更高优先级的内联样式。

例如

<div class="myelement1" style="display:block;">My div has an inline style.</div>

在@media print 中,添加 !important 并成为赢家

@media print {
   .myelement1, .myelement2 { display: none !important; }
}
于 2015-02-19T00:45:14.920 回答
23

First, I'd try adding a space after print. May not make a difference, but.....

@media print {
     /*print css here*/
}

Next, printing in browsers usually ignores background colors. Try using 'box-shadow'....

@media print {
     #bruikleenovereenkomst {
         width: 100%;
         height: 500px;
         box-shadow:  inset 0 0 0 1000px #000;
     }
}

Smashing Magazine has some excellent pointers: http://www.smashingmagazine.com/2013/03/tips-and-tricks-for-print-style-sheets/ Note that they talk about printing from a Webkit browser (Chrome or Safari, for example), and attempting to force the printer to render the colors as they appear on-screen by using a separate media query.....

@media print and (color) {
   * {
      -webkit-print-color-adjust: exact;
      print-color-adjust: exact;
   }
}

Hope this helps!

于 2014-04-18T14:04:46.043 回答
0

window.print()是一个异步函数,因此如果您在调用它后立即管理 DOM - 您可能会遇到此类空白打印问题。解决方案是将 DOM 管理移至beforeprintafterprint事件的事件回调函数:

onbeforeprint
onafterpring

注意:在调用函数之前注册这两个回调window.print

Safari 浏览器不支持这两个事件。

于 2019-10-24T18:09:04.877 回答
0

您需要在您打印的 div 元素中添加打印媒体样式

于 2021-02-02T05:55:33.807 回答