2
我有一個應該可打印的頁面。問題在於頁面包含一些帶有background-image
的元素(並且我在打印時看不到圖像),所以我嘗試爲打印機創建樣式表,並使用一些僞元素來幫助我顯示圖像,看起來像:設置圖片url內容的僞元素的寬度
.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)。
如果此問題與其他問題重複,則應該將其標記爲重複,而不是發佈答案。 – cimmanon