To add to existing ones, use the following:
background: -moz-linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)); background: -webkit-linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)); background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)); filter: unquote("progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#b3000000',GradientType=0 )");
... for cross-browser support for 70% linear gradient overlay. To brighten the image, you can change all these 0,0,0 to 255,255,255 . If 70% is small, go and change .7 . And, for future reference, check out this: http://www.colorzilla.com/gradient-editor/
Alex Price Mar 09 '16 at 5:53 on 2016-03-09 05:53
source share