代码示例:(标识:css3_background_multiple_3)
<!DOCTYPE html>
<html>
<head>
<style> 
#example1 {
  background: url(/static/demo/images/tree.png) left top no-repeat, url(/static/demo/images/flower.gif) right bottom no-repeat, url(/static/demo/images/paper.jpg) left top repeat;
  padding: 15px;
  background-size: 50px, 130px, auto;
}
</style>
</head>
<body>

<div id="example1">
  <h1>Welcome to Shanghai</h1>
  <p>Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to Shanghai!</p>
  <p>The city is located on the southern estuary of the Yangtze, with the Huangpu River flowing through it.</p>
</div>

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