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

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

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

<html>
<head> 
<style>
body {
  background-image: url("http://w3cschool.cn/style/download.png");
  background-repeat: repeat-x;
  background-color: #ffffff;
}
  </style>  
</head>
<body>
         <p>This example illustrates the 
         <b>background-image</b> property with a value of <b>repeat-x</b>.</p>
</body>
</html>