change background css code example

Example 1: how to change background image in html

<style>
div {
  background-image: url('img_girl.jpg');
}
</style>

Example 2: how to change the page background in css

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

Example 3: background color using css

/* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
  background-color: blue;
}

Example 4: how to set div background image

body {
 background-image: url("paper.gif");
 background-color: #cccccc;
}

Example 5: css coor background

body {background-color: coral;}

Tags:

Misc Example