Chrome 打印成带有背景颜色的 PDF

Chrome print to PDF with background colors

我有基于 Bootstrap 的页面,带有 Flat UI css,我想打印它(保存为 PDF)。

但是无法打印标题颜色和进度条颜色。我在那里看到了教程,但是没有用。

Here is live demo.

您必须启用包含背景图形的选项。请看下面

看起来像 Bootstrap css 中的以下代码片段导致了这个问题,我刚刚删除了它。

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; // Black prints faster: h5bp.com/s
        box-shadow: none !important;
        text-shadow: none !important;
    }