css background rgb opacity code example
Example 1: background color css rgb
body {
background-color: rgb(255,255,255);
}
Example 2: rgba red color
rgb(255,0,0) /*red*/ Hex #FF0000
body {
background-color: rgb(255,255,255);
}
rgb(255,0,0) /*red*/ Hex #FF0000