JSFiddle - React, Tailwind, and code Playground

by kevinPHPkevin

HTML

<div class="MaxWidth">
    <div id="left">
        <div>
            <img src="images/optimizefront.jpg" class="floatLeft" />
        </div>
        <div class="clear"></div>
    </div>
    <div id="ad">//ad</div>
</div>

CSS

div.MaxWidth {
    width:500px;
}
div#left {
    float:left;
    width:200px;
    background:#ccc;
}
div#ad {
    width:200px;
    background:#ff0;
    float:right;
}
.clear {
    clear:both;
}