JSFiddle - React, Tailwind, and code Playground

by Tan

HTML

<div class="cont">
<div class="image">photo</div>
<div class="text"><h2>Some text</h2><p>More text</p><p>More text</p><p>More text</p><p>More text</p></div>
<div class="clear"></div>

</div>

CSS

.cont {border:1px solid #999;padding:10px;}
.image {float:left;margin:0 10px 10px 0;width:120px;height:120px;background-color:#999;}
.text {}
.text p {display:block;}
.clear {clear:both;}