Answers for "opacity none background"

CSS
0

background having opacity and text above to not have opacity

background-color: rgba(255,0,0,0.6);
Posted by: Guest on September-02-2020
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 "opacity none background"

Browse Popular Code Answers by Language