Answers for "how to transparent a background in css of opacity .5"

CSS
1

how to make background transparent in css

background-color: rgba(255, 0, 0, 0.5);
Posted by: Guest on July-06-2020
2

background color transparent opacity css

/* css semi-transparent background color */
.bg-semi-transparent {
  background-color: #ffffff40!important;
  /* change numbers from 00 to 99 at last of hex code 
  for transpency you want. */
}
Posted by: Guest on December-27-2021

Code answers related to "how to transparent a background in css of opacity .5"

Browse Popular Code Answers by Language