background image css initial code example
Example 1: background image css
.selector {
background-image: url(image.png);
}
Example 2: css background image
background-image: url("image.png");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
Example 3: background css
body {
background: #ffffff url("img_tree.png") no-repeat fixed right top;
}