我有一个应该是可打印的页面。问题是页面包含一些元素background-image
(打印时我看不到图像),所以我尝试为打印机创建一个样式表,其中包含一些伪元素可以帮助我显示图像,它看起来喜欢:
.pbar-fill {
background: none !important;
}
.pbar-fill::before {
content: url("/images/bg-progress-bar-big01.gif") !important;
position: absolute !important;
z-index: 1003 !important;
width: 23px !important;
}
它并不顺利,因为图像总是得到它的全宽(220px)。