首页htmlbackground_positionCSS Property Value - 如何background-position: left center;

CSS Property Value - 如何background-position: left center;

我们想知道如何background-position: left center;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {
  width: 300px;
  height: 100px;
  border: 1px solid #ccc;
  background-image: url("http://placehold.it/200x200");
  background-position: left center;
  background-repeat: repeat-x;
}
</style>
</head>
<body>
  <div id="container">
    <img src="http://placehold.it/20x20" />
  </div>
</body>
</html>