For modern browsers I use background: rgba(0, 0, 0, 0.75);
for a full viewport div overlay.
It wasn't working for IE8 and below, so I searched for a solution and I found this on css3tricks but tweaked the values a little:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
It works, however its not the equivalent of background: rgba(0, 0, 0, 0.75);
. <- This one appears lighter then the other one. But I have set the opacity on the MS filter to 99% but it's still appears lighter.
Does anybody know how I can get the same result?
Quote from MSDN http://msdn.microsoft.com/en-us/library/ms532930%28v=vs.85%29.aspx:
This means:
So the following CSS should produce equivalent background on IE6, IE7 and IE8:
You should put the
filter
property inside a conditional CSS for < IE9, otherwise IE9 seems to apply both properties and the result gets darker.However, I'd instead suggest using a small semi-transparent PNG with the desired color as
background-image
withbackground-repeat: repeat;
for better browser support - if needed.