how to change a css background image e2 80 99s opacity

Solutions on MaxInterview for how to change a css background image e2 80 99s opacity by the best coders in the world

showing results for - "how to change a css background image e2 80 99s opacity"
Sara
01 Sep 2016
1.demo-wrap {
2  overflow: hidden;
3  position: relative;
4}
5
6.demo-bg {
7  opacity: 0.6;
8  position: absolute;
9  left: 0;
10  top: 0;
11  width: 100%;
12  height: auto;
13}
14
15.demo-content {
16  position: relative;
17}