JSFiddle - React, Tailwind, and code Playground

by rohitazad

HTML

<div id="image"></div>
<div id="text">This is some text
    <div class="clr"></div>
</div>

CSS

#image{
    float:right;
    height:50px;
    width:40px;
    border:2px solid green;
}

#text{
    border:1px solid red;
    margin-right:45px;
}
.clr{
    clear:both;
}