How do I Make Firefox Print a Background-Color Style?

后端 未结 8 1033
臣服心动
臣服心动 2020-11-29 08:14

I have some simple CSS:

#someElement {
    background-color:black;
    color:white;
}

It looks ok in the browser, but when I go to print it

8条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-29 08:35

    For show background colors in firefox & IE

    @media print {
      body{
        -webkit-print-color-adjust: exact; /*chrome & webkit browsers*/
        color-adjust: exact; /*firefox & IE */
      } 
    }
    

提交回复
热议问题