background colors 3 values css code example
Example 1: background color css
html,body {
background-color: red;
}
Example 2: css transparent background color
div {
opacity:25% ;
}
html,body {
background-color: red;
}
div {
opacity:25% ;
}