Background position center
by karthick6891
HTML
<!-- background positioning example-->
<div class="background">
<div class="left"></div>
</div>
CSS
.background {
min-height: 992px;
background-color: gray;
}
.left {
background-image: url(http://placeholdit.imgix.net/~text?txtsize=20&txt=218%C3%97698&w=218&h=698);
position: relative;
z-index: 1;
height: 1000px;
width: 800px;
background-repeat:no-repeat;
background-position:center center;
}