Answers for "how to make css background style transparent"

CSS
13

css how to make background transparent

/* Use RGBA */
background-color: rgba(255, 255, 0, 0.75); /* Transparent Yellow */
Posted by: Guest on September-29-2020
4

css transparent background color

div {
 opacity:25% ; 
}
Posted by: Guest on March-21-2020

Code answers related to "how to make css background style transparent"

Browse Popular Code Answers by Language