代码示例:(标识:css_background_shorthand)
<!DOCTYPE html>
<html>
<head>
<style>
body {
  background: #ffffff url("/static/demo/images/tree.png") no-repeat right top;
  margin-right: 200px;
}
</style>
</head>
<body>

<h1>background 属性</h1>

<p>background 属性是在一条声明中指定所有背景属性的简写属性。</p>

<p>在这里,背景图像只显示一次,并位于右上角。</p>

<p>我们还添加了右外边距,以使文本不会覆盖背景图片。</p>

</body>
</html>
运行结果: