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 {
max-height:100px;
height:100px;
max-width:100px;
width:100px;
background-color: #ececec;
}
.customimg img {
max-height: 100%;
max-width: 100%;
}