JSFiddle - React, Tailwind, and code Playground

HTML

<div class="id">
    <div class="id-img">
       <img src=http://ipic.su/img/img7/fs/4.1413556547.jpg />
    </div>
<p>Подпись 1</p>
</div>
<div class="id">
    <div class="id-img">
		<img src=http://ipic.su/img/img7/fs/2.1413556519.jpg />
	</div>
<p>Подпись 2</p>
</div>

CSS

.id{
  float:left;
  width: 49%;
  padding-right: 1%;
  overflow:hidden;
}
.id-img{
	position: relative;
    border: 1px solid #CCC;
    width: 100%;
    height: 140px;
    position: relative;}

.id-img img{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	width:100%;
	height:100%;
    display: block;
    margin: auto;
    
}