change background image opacity css jpg 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;
}