JSFiddle - React, Tailwind, and code Playground
HTML
<div class="span3 top1">
<div class="row">
<div class="span3 food1">
<img src="http://placehold.it/2000x400" alt="">
</div>
</div>
<div class="row">
<div class="span3 name1">
heres the name
</div>
</div>
<div class="row">
<div class="span3 description1">
heres where i describe and say "read more"
</div>
</div>
</div>
CSS
.top1 {
height:90px;
background-color:#FFFFFF;
margin-top:10px;
overflow: hidden;
}
.top1 img {
height:100%;
}
.food1 {
background-color:#000000;
height:230px;
}
.name1 {
background-color:#555555;
height:90px;
}
.description1 {
background-color:#777777;
height:70px;
}