Skip to content Skip to sidebar Skip to footer

Background Image Is Not Getting Printed

I have used a container in my HTML page, where i used a background image. I want to put some text on top of my background image, and print it. But When I use : Copy

or, you can set in css, as in:

@media print {
body {
   content:'url(../imagez.png)';
  }
}

note: some IE not work by using that, you can use:

@import 'style.css' print;

Solution 2:


Post a Comment for "Background Image Is Not Getting Printed"