Is there a way to uniformly add an alpha value to all the divs on my web page without specifying the exact color code in 'rgba'? I have divs with different background colors and I want to easily revert the changes if needed.
Perhaps something along these lines:
div{
background-color: rgba( , , ,0.8);
}
Unfortunately, this approach does not seem to be effective. Any suggestions or ideas to achieve this uniform alpha value adjustment?