0

我正在尝试制作与 IE8 兼容的打印 CSS,但是浏览器正在创建一个大的白色 div 来代替应该是内容。

在常规 CSS 中,我在问题 div 上有以下内容:

.content-gradient {
background: @contentbg;
background: -moz-linear-gradient(top,  rgba(45,45,45,0.8) 0%, rgba(45,45,45,1) 25%, rgba(45,45,45,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(45,45,45,0.8)), color-stop(25%,rgba(45,45,45,1)), color-stop(100%,rgba(45,45,45,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  rgba(45,45,45,0.8) 0%,rgba(45,45,45,1) 25%,rgba(45,45,45,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  rgba(45,45,45,0.8) 0%,rgba(45,45,45,1) 25%,rgba(45,45,45,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  rgba(45,45,45,0.8) 0%,rgba(45,45,45,1) 25%,rgba(45,45,45,1) 100%); /* IE10+ */
background: linear-gradient(to bottom,  rgba(45,45,45,0.8) 0%,rgba(45,45,45,1) 25%,rgba(45,45,45,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc2d2d2d', endColorstr='#2d2d2d',GradientType=0 ); /* IE6-9 */
}

这是我应用到 div 的 LESS 混合,然后在我的 print.css 中,我尝试使用以下方法清除它:background: #fff !important;

当我打印预览时,我看到带有黑色文本的灰色背景。当我打印文件时,我得到一个纯白色的 div。我对为什么要这样做的线索为零。

我有一堆全局策略,用于清除通常的罪魁祸首:

@media print {

  * {
    overflow: visible !important; // fixes Firefox print CSS overflow bug
  }

  // Reset the CSS
  body, html * {
     background: #fff !important;
     color: #000 !important;
     padding: 0 !important;
     position: static !important;
     float: none !important;
  }

  // continue with the rest of the print css
}

这个样式表已经是匹配 FF 和 Chrome 的噩梦了。任何帮助深表感谢。

4

0 回答 0