JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td class="customimg"><a href="link"><img src="http://www.clickonautoparts.com/Vehicle/Rack-and-Pinion/..%5C..%5Cimg%5CVehicles%5CBMW.jpg"></a></td>
<td><a href="link">title</a><br>text...</td>
</tr>
</table>
<table>
<tr>
<td class="customimg"><a href="link"><img src="http://th08.deviantart.net/fs71/150/i/2010/118/8/b/BMW_Orb_by_leepat0302.jpg"></a></td>
<td><a href="link">title</a><br>text...</td>
</tr>
</table>
CSS
table {
margin: 30px;
}
.customimg {
height:100px;
width:100px;
overflow: hidden;
background-color: #ececec;
text-align: center;
}
.customimg img {
max-height: 100%;
max-width: 100%;
}