Answers for "how to change the opacity of a background in css"

CSS
2

css set background opacity

/*background color opacity with explainations */
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 February-23-2021

Code answers related to "how to change the opacity of a background in css"

Browse Popular Code Answers by Language