background color rgb code example

Example 1: background color css rgb

body {
  background-color: rgb(255,255,255);
}

Example 2: background color

//javascript type css:
document.body.style.backgroundColor = "blue";
// or inline css:
<div style="background-color: blue;"></div>

Example 3: background color in hex css

<style>
div {
    background-color: #ffffff; /* add # infront of the hex code */
    color: #ffffff; /* add # infront of the hex code */
}
</style>

Example 4: css background color

body {background-color: coral;}

Tags: