Change background image opacity

后端 未结 8 1478
-上瘾入骨i
-上瘾入骨i 2020-12-03 09:56

I have a div element with text blocks and a parent div in which I have set a background image. Now I want to reduce the opacity of the background image. Please suggest how I

8条回答
  •  忘掉有多难
    2020-12-03 10:14

    and you can do that by simple code:

    filter:alpha(opacity=30);
    -moz-opacity:0.3;
    -khtml-opacity: 0.3;
    opacity: 0.3;
    

提交回复
热议问题