I have HTML + CSS page that contains img element with background image in CSS.
In HTML:
<img class="symbol>
In CSS (Sass):
.symbol{
background-image: url('../images/symbol.png');
background-repeat: no-repeat;
width: 50px;
height: 50px;
background-position: 15px, 15px;
}
It is shown correctly in Chrome but on printing (ctrl + P) its automatically remove the background but I need the image background also in the printed page.
How can I fix it?