I tried to remove the broken icon in the img element when the destination url doesn't exist, without deleting the img element :
HTML:
<img src="error.png">
CSS:
img {
width: 100px;
height: 100px;
background-image: url(url.png);
background-size: cover;
}
Instead of deleting the img element, I prefer to bring up the background-img without a broken icon.
I hope someone help me, I really need this.