CSS Property Value How to - background-position: center center; change image background position inside a div








Question

We would like to know how to background-position: center center; change image background position inside a div.

Answer


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

The code above is rendered as follows: