How can I resolve the opacity of a div and not a background image?
In an ajax request, the following class is applied to the selected div. The entire contents of this div becomes opaque. However, the ajax background loading indicator also becomes opaque. How can I make the background image not become opaque?
.ajax-mask { opacity: 0.5; filter: alpha(opacity=50); background: url('/Images/Ajax/Ajax.gif') no-repeat center center; }
(sorry, I donβt know why there are two opacity styles, not spert-style).
Here is a print screen showing what it currently looks like. The mask is applied and the indicator should be bright red.

source share