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?