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!

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

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?