How to get a background image to print using css?

后端 未结 10 680
再見小時候
再見小時候 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:01

    Try this:

    @media print {
        body:before {
            content:url(http://192.168.0.11:8088/automation/img/mahyaA5.jpg);
            position: absolute;
            z-index: -1;
          }
    }
    

提交回复
热议问题