首页htmlbackground_positionCSS Property Value - 如何background-position: center center; 改变div里图像背景位置

CSS Property Value - 如何background-position: center center; 改变div里图像背景位置

我们想知道如何background-position: center center; 改变div里图像背景位置。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.banner-thumbs {
  width: 100px;
  height: 100px;
  background-image:url(http://www.w3cschool.cn/style/download.png);
  background-position: center center;
}
</style>
</head>
<body>
  <div class="banner-thumbs"></div>
</body>
</html>