首页htmlbackground_positionCSS Property Value - 如何background-position: 50%20%;

CSS Property Value - 如何background-position: 50%20%;

我们想知道如何background-position: 50%20%;

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

<body>
   <p>This example illustrates the <b>background-position</b> property.</p>
</body>
</html>