JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <img src="https://static.slo-tech.com/stili/bel/slotech.png" />
    <div id="description">To je moj opis slike</div>
    <img src="https://static.slo-tech.com/stili/bel/slotech.png" class="copied" />
    <img src="https://static.slo-tech.com/stili/bel/slotech.png" class="copied" />
    <img src="https://static.slo-tech.com/stili/bel/slotech.png" class="copied" />
</div>

<a href="#" onClick="window.print()">print me</a>

CSS

.copied
{
    display: none;
}

@media print
{
    #description { display: none; }
    .copied
    {
        display: inline;
    }
}