Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Replacing images when printing

more options

@media print {

   #logo:after {
       content: url(print-logo.png);
   }

}

this code does not work. The image is not displayed in print preview.

@media print { #logo:after { content: url(print-logo.png); } } this code does not work. The image is not displayed in print preview.

Все ответы (1)

more options

Does

  #logo:after {
      content: url(print-logo.png);
  }

work without the media directive in both screen and print views?