text opacity code example
Example 1: text opacity css
div h1{
opacity: 0.5;
}
Example 2: css opacity
.div{
opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}
div h1{
opacity: 0.5;
}
.div{
opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}