Answers for "css background opacity only"

CSS
-1

css background opacity only

/* ### RGBa example */
background: rgba(51, 170, 51, .1)    /*  10% opaque green */ 
background: rgba(51, 170, 51, .4)    /*  40% opaque green */ 
background: rgba(51, 170, 51, .7)    /*  70% opaque green */ 
background: rgba(51, 170, 51,  1)    /* full opaque green */
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language