I have a difficult question. For some people this can be fun.
I am trying to overcome html img and use image via css background property.
So the code is simple:
<a id="logo" href="/"><img src="/logo1.png"></a>
CSS
position: relative; height: 85px; width: 200px; background: url(/logo2.png) no-repeat; background-size: 200px 200px;
So, I want logo1 from html removed and css image logo2 overtake logo1.
NOTE. No extra divs or classes, just with this html markup!
Tried everything, but I think this is impossible?
source share