首页htmlbackground_repeatCSS Property Value - 如何background-repeat: no-repeat;

CSS Property Value - 如何background-repeat: no-repeat;

我们想知道如何background-repeat: no-repeat;

<html>
<head>
<style>
body {
  background-image: url("http://w3cschool.cn/style/download.png");
  background-repeat: no-repeat;
  background-color: #eaeaea;
}
  </style>  
</head>

<body>
   <p>This example illustrates the 
   <b>background-repeat</b> property with a value of <b>no-repeat</b>.</p>
</body>
</html>