The background Property

The background property is a shorthand property for specifying all the background properties in one declaration.

Here, the background image is only shown once, and it is also positioned in the top-right corner.

We have also added a right margin, so that the text will not write over the background image.

The internal stylesheet embedded in the head of this page

<style>
body {
  background: #ffffff url("include/images/img_tree.png") no-repeat right top;
  margin-right: 200px;
}
</style>