JSFiddle - React, Tailwind, and code Playground

by Max Lensky

HTML

<div class="wrapper"> 
  <div class="post"> 
		<p><img src="http://www.ethicsandentrepreneurship.org/wp-content/uploads/2015/08/steve-jobs.jpg" /> 
		 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
		</p>
	</div>
  <div class="post"> 
		<p><img src="http://www.ethicsandentrepreneurship.org/wp-content/uploads/2015/08/steve-jobs.jpg" /> 
		 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
		</p>
	</div>
  <div class="post"> 
		<p><img src="http://www.ethicsandentrepreneurship.org/wp-content/uploads/2015/08/steve-jobs.jpg" /> 
		 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,
		</p>
	</div>
</div>

CSS

*{
	margin:0;
	padding:0;
}
html,body{
	min-height:100%;
}
.wrapper{
	width:90%;
	margin:auto;
	background:#fafafa;
	padding:10px;
}
.post{
	width:32%;
	min-height:50px;
	border:1px solid transparent;
	float:left;
}
.wrapper:after,
.post:after{
	content:'';
	clear:both;
	display:block;
}
.post p img{
	width:10vw;
	height:auto;
	margin:5px;
	float:left;
}
.post p{
	font-size:2vw;
	display:block;
	width:90%;
	text-align:justify;
}