I try to center an image but not sure what I'm doing wrong. What should I change/add so the image is center?
#img-wrap {
width:450px;
clear:both;
display:block
}
#img-wrap img {
margin:0 auto;
text-center:center;
height:100px;
width:100px;
background:#000;
}
<div id='img-wrap'>
<img src='https://www.google.co.in/images/srpr/logo11w.png' />
</div>
Thanks.