how to set background image in container div code example
Example 1: how to set div background image
body {
background-image: url("paper.gif");
background-color: #cccccc;
}
Example 2: adding background image
body{background-image: url("paper.gif");}