JSFiddle - React, Tailwind, and code Playground

HTML

<div class="transparent-box">
    <img class="alignleft" src="img/img.jpg" width="480" height="319" />
    <div class="tr-text">
        <p>some text</p>
    </div>
    <div class="clear"></div>
</div>

CSS

body{
    background-color:#333;
    height:100%;
}
img.alignleft {
    float: left;
    margin-right: 30px;
}
.transparent-box {
    background: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}
p {
    line-height: 1.34;
    margin-bottom: 14px;
    font-size: 15px;
}
.clear{
    clear:both;
    
}