add transparency to image background css code example
Example 1: change transparancy img css
img {
opacity: 0.5;
}
Example 2: Background image opacity CSS
div {
opacity : 50%;
}
/* Use opacity to change the opacity of selected css */
img {
opacity: 0.5;
}
div {
opacity : 50%;
}
/* Use opacity to change the opacity of selected css */