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