JSFiddle - React, Tailwind, and code Playground

testing floats http://stackoverflow.com/questions/21504176/how-to-order-div-elements-inside-a-container-div http://alistapart.com/article/css-floats-101

by lalatino

HTML

<div class="block pink float">1</div>
<div class="block blue float">2</div>
<div class="block green">3</div>
<div class="block orange">4</div>

CSS

.block {
	width: 200px;
	height: 200px;
}
.float { float: left; }
.pink { background: pink; }
.blue { background: blue; }
.green { background: green; clear:left; }
.orange { background: orange; }