Answers for "why does my text appear transparent when i use ovelay in css"

CSS
1

css make text transparent

.text
    {
        font-family: Garamond, serif;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.5);
    }
Posted by: Guest on January-09-2021
0

css transparent background behind text

p {
  position: absolute;
  background-color: green;
  filter: alpha(opacity=60);
  opacity: 0;
}

span {
  color: white;
  filter: alpha(opacity=100);
  opacity: 1;
}
Posted by: Guest on May-10-2021

Code answers related to "why does my text appear transparent when i use ovelay in css"

Browse Popular Code Answers by Language