how to make the background of a png transparent css code example
Example 1: change transparancy img css
img {
opacity: 0.5;
}
Example 2: png image background transparent css
body {
background-color: transparent;
}
img {
opacity: 0.5;
}
body {
background-color: transparent;
}