JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<p id="imgs"><img src="http://placekitten.com/g/200/300" /></p>

<div id="banner">banner</div>

<div id="map">map</div>

CSS

div {
    margin-bottom: 10px;
}
#imgs {
    height: 50px;
    background: #ccc;
    margin-bottom: 10px;
}
#banner {
    height: 30px;
    background: #f00;
}
#map {
    float: left;
    width: 270px;
    background: purple;
}