Answers for "css background color overlay opacity"

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

background color with opacity

h1 {background-color:rgba(255,0,0,0.3);}
Posted by: Guest on April-01-2020

Code answers related to "css background color overlay opacity"

Browse Popular Code Answers by Language