Is it possible to set the opacity of a background image without affecting the opacity of child elements?
All links in the footer need a custom bull
we can figure out that by not playing with opacity just by using rgba color
e.g "background-color: rgba(0,0,0, 0.5)"
"background-color: rgba(0,0,0, 0.5)"
Sample :
Previous Css:
.login-card { // .... others CSS background-color: #121e1b; opacity: 0.5; }
To :
.login-card { // .... others CSS background-color: rgba(0, 0, 0, 0.5); }