css background to normal from white transparent 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;
}