Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a page which is supposed to be printable. The problem is that the page includes some elements with background-image (and I can't see the images when I print), so I try to create a style sheet for the printer, with some pseudo elements that will help me to display the images, it looks like:

.pbar-fill
  background: none !important
  &::before
    content: url('/images/bg-progress-bar-big01.gif') !important
    position: absolute !important
    z-index: 1003 !important
    width: 23px !important

It doesn't go well, as the image always get its full width (220px)

What can I do?

Tanks in advance!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.