css background rgb code example
Example 1: background color css rgb
body {
background-color: rgb(255,255,255);
}
Example 2: background color cs rgba
#p1 {background-color:rgba(255,0,0,0.3);}
body {
background-color: rgb(255,255,255);
}
#p1 {background-color:rgba(255,0,0,0.3);}