JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
	<div class="img-wrapper">
		<img src="https://pixabay.com/static/uploads/photo/2015/10/01/21/39/background-image-967820_960_720.jpg" class="grow">	
	</div>
  
  <div class="description">
    <h3>
    Some title
    </h3>
    <p>
    some text
    </p>
  </div>
</div>

CSS

.wrapper{
  background-color: white;
  text-align: center;
  width: 150px;
  overflow: hidden;
}

.img-wrapper{
	
	width: 100%;
	height: 150px;
	overflow: hidden;
	
}

.img-wrapper img{
	
	display: block;
	width: 100%;
	
}

.grow{
			transition: all .2s ease-in-out; 
	-webkit-transition: all .2s ease-in-out; 
	   -moz-transition: all .2s ease-in-out; 
		-ms-transition: all .2s ease-in-out; 
		 -o-transition: all .2s ease-in-out; 
}

.grow:hover{
			transform: scale(1.1);
	-webkit-transform: scale(1.1);
	   -moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		 -o-transform: scale(1.1);
}