JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrapper">
    <div id="left">
        <img src="http://cs407019.userapi.com/v407019850/5bf2/XBoW8fQ4e4Q.jpg">
        <div></div>
    </div>
    <div id="right"></div>
</div>

CSS

.wrapper{
    float: left;
    width: 100%;
    max-width: 800px;
}

#left{
   padding: 0 110px 0 0; 
}

img{
    max-width: 100%;
    float: left;
}

#left div{
    width: 100%;
    height: 25px;
    background: #c5c5c5;
    float: left;
}

#right{
    width: 100px;
    height: 200px;
    background: red;
    float: left;
}