how to make the image shows side by side but center of the div
thankx in advance
the css used
.img-wrap {
width:200px;
margin: auto;
}
.img-wrap img{
display:inline-block;
float:left;
}
the html
<div class="img-wrap">
<img src="img/first.png" /><img src="img/second.png" />
</div>