Answers for "css background opactity"

CSS
12

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
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