JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<div class="feed-item">
	<div class="news-img-container">
		<img class="news-thumbnail" src="https://s.aolcdn.com/hss/storage/midas/51f099c48bab00d857ff7f594cb25a91/204690491/japan-iss-launch.jpg" style="max-width: 125px;">
	</div>
	<div class="feed-text-offset">
		<a href="https://www.engadget.com/2016/12/11/japan-iss-resupply/" target="_blank">Japanese spacecraft lifts off with ISS supplies on board</a>
		<span class="feed-item-since">1 hr</span></div>
	</div>
  <div style="clear: both;">
</div>
<div class="feed-item">
	<div class="news-img-container">
		<img class="news-thumbnail" src="https://s.aolcdn.com/hss/storage/midas/51f099c48bab00d857ff7f594cb25a91/204690491/japan-iss-launch.jpg" style="max-width: 125px;">
	</div>
	<div class="feed-text-offset">
		<a href="https://www.engadget.com/2016/12/11/japan-iss-resupply/" target="_blank">Japanese spacecraft lifts off with ISS supplies on board</a>
		<span class="feed-item-since">1 hr</span></div>
	</div>
  <div style="clear: both;">
</div>

CSS

.feed-item {
    padding: 2px;
    background-color: green;
    float:left;
}

.feed-item-since {
    font-size: 0.8em;
    font-weight: 400;
    margin-top: 5px;
    display: block;
}

.news-img-container {
    width: 125px;
    float: left;
}

.feed-text-offset {
    margin-left: 130px;
}