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.
Всички отговори (1)
Does
#logo:after { content: url(print-logo.png); }
work without the media directive in both screen and print views?