How to get a background image to print using css?

后端 未结 10 700
再見小時候
再見小時候 2020-11-27 18:21

I am using the ASP Net Sprites package to create CSS Sprites on my website.

It is working, but the images it generates do not appear when printed.

The code g

10条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-27 19:13

    You could have an own media-query for print and use :before selector with the attribute "content".

    Put this in the media query and it will insert the image when you try to print:

    p:before { content: url(images/quote.gif); }
    

    http://www.htmldog.com/reference/cssproperties/content/

提交回复
热议问题