![Firefox logo](https://assets-prod.sumo.prod.webservices.mozgcp.net/media/uploads/products/2020-04-14-08-36-13-8dda6f.png)
Replacing images when printing
@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.
All Replies (1)
Does
#logo:after { content: url(print-logo.png); }
work without the media directive in both screen and print views?