JSFiddle - React, Tailwind, and code Playground
by rohitazad
HTML
<div class="parent">
<img src='pic.jpg' alt="sample img">
<div class="child">
<p>There are a lot of things </p>
</div>
</div>
CSS
.parent{
width:600px;
min-height:50px;
border:solid 1px black;
overflow:hidden;
}
img{
float:left;
border:solid 1px #c0c0c0;
padding:5px;
height:150px;
width:150px;
margin:10px;
}
.child{
}