What property is used to describe the background color? code example
Example 1: background color css rgb
body {
background-color: rgb(255,255,255);
}
Example 2: css transparent background color
div {
opacity:25% ;
}
body {
background-color: rgb(255,255,255);
}
div {
opacity:25% ;
}