Answers for "text opacity css"

CSS
2

text opacity css

div h1{
  opacity: 0.5;
}
Posted by: Guest on April-12-2021
15

css opacity example

.opacity30 {
  opacity: 0.3;
  filter: alpha(opacity=30); /* For IE8 and earlier */
}
Posted by: Guest on June-25-2019
6

css opacity

.div{
  opacity: 0.8; /* 1 means fully visible, 0 means invisible */
}
Posted by: Guest on July-16-2020

Browse Popular Code Answers by Language