background hex opacity code example
Example 1: background color with opacity
h1 {background-color:rgba(255,0,0,0.3);}
Example 2: background opacity css hex
background-color: #ff000088; <--- the 88 is the alpha
background-color: #ff0000 50%;
h1 {background-color:rgba(255,0,0,0.3);}
background-color: #ff000088; <--- the 88 is the alpha
background-color: #ff0000 50%;