Answers for "css style background color with transparency"

CSS
7

css opacity background color

background: rgba(255, 255, 255, 0.25);
Posted by: Guest on July-12-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
2

background color opacity

rgba(51, 170, 51, .1)    /*  10% opaque green */ 
rgba(51, 170, 51, .4)    /*  40% opaque green */ 
rgba(51, 170, 51, .7)    /*  70% opaque green */ 
rgba(51, 170, 51,  1)    /* full opaque green */
Posted by: Guest on March-03-2020

Code answers related to "css style background color with transparency"

Browse Popular Code Answers by Language