Ngôn ngữ CSS - Vị trí ảnh nền

Vị trí ảnh nền

<!DOCTYPE html>
<html>
<head>
<style>
body {
  background-image: url("images/img_tree.png");
  background-repeat: no-repeat;
  background-position: right top;
  margin-right: 200px;
}
</style>
</head>
<body>

<h1>Hello World!</h1>
<p>Here, the background image is only shown once. In addition it is positioned away from the text.</p>
<p>In this example we have also added a margin on the right side, so that the background image will not disturb the text.</p>

</body>
</html>

Xem ví dụ