I need to change the white background color of images using programming. Does anyone know how to proceed?
I need to change the white background color of images using programming. Does anyone know how to proceed?
Try this
<img class="suaclasse" src...>
css
img.suaclasse {
background-color: rgba(0,0,0,0); // ou uma cor que você preferir.
}