css syntax to set background image code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: css background image
body {
background-image: url("paper.gif");
}
.selector {
background-image: url(image.png);
}
body {
background-image: url("paper.gif");
}