change text opacity css code example
Example 1: text opacity css
div h1{
opacity: 0.5;
}
Example 2: background color with opacity
h1 {background-color:rgba(255,0,0,0.3);}
div h1{
opacity: 0.5;
}
h1 {background-color:rgba(255,0,0,0.3);}