Looking for a way to adjust the opacity of a div's background? This is easily done in modern browsers such as Chrome and Firefox using rgba.
However, I'm facing difficulties with IE7. The "filter: alpha(opacity=50);" property doesn't work for me because I specifically want the background to be transparent, not the content inside the div.
I've ruled out using a transparent image as a background as well.
I even attempted to use ::before pseudo-element and apply "filter: alpha(opacity=50);", but it seems that this solution also fails in IE.
Any suggestions or tips would be greatly appreciated. Thank you.