Answers for "determine transparency of color in background"

CSS
17

opacity color

.opacity30 {
  opacity: 0.3;
  filter: alpha(opacity=30); /* For IE8 and earlier */
}
Posted by: Guest on June-25-2019
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 "determine transparency of color in background"

Browse Popular Code Answers by Language