css text background transparent code example
Example 1: css make text transparent
.text
{
font-family: Garamond, serif;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
}
Example 2: background color with opacity
h1 {background-color:rgba(255,0,0,0.3);}