I'm having trouble centering an image on my website. Can someone help me figure out what I need to change or add in order to get the image centered?
#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.