I have to set images with same height and width.I have three images with different height and width. I have to display the same size in the box. Would you help me in this?
ul {
list-style: none;
}
ul li {
width: 200px;
height: 200px;
display: inline-block;
border: 1px solid #000;
}
ul li img {
width: 100%;
}
<ul>
<li><img src="http://i.imgur.com/tI5jq2c.jpg"></li>
<li><img src="http://i.imgur.com/37w80TG.jpg"></li>
<li><img src="http://i.imgur.com/B1MCOtx.jpg"></li>
</ul>