font transparent css 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: css opacity
.div{
opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}