set background color code example

Example 1: css background color

body {
  background-color: green;
}

Example 2: html change background color

<!DOCTYPE html>
<html>
<body style="background-color:powderblue;">

</body>
</html>

Example 3: html how to change background color

<body style="background-color:powderblue;">
<p style="background-color:tomato;">This paragraph has a red background.</p>
</body>

Example 4: how to change the page background in css

body {
  /* this changes the page's background to green  */
  background-color: green;
}

Example 5: css set background color

body {
	background-color: red; 
}

Example 6: background color

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

Tags:

Css Example