1@media print {
2 /* styling goes here */
3 .example {
4 display: none;
5 }
6}
1/* print.css */
2* {
3 background-image: none !important;
4}
5
6img, svg {
7 display: none !important;
8}
9
10img.print, svg.print {
11 display: block;
12 max-width: 100%;
13}
14