how to make a translucent background in css code example
Example 1: background color with opacity
h1 {background-color:rgba(255,0,0,0.3);}
Example 2: reduce opacity of background image css
.img1 {
opacity: 0.6;
z-index=1;
}
h1 {background-color:rgba(255,0,0,0.3);}
.img1 {
opacity: 0.6;
z-index=1;
}