JSFiddle - React, Tailwind, and code Playground

by ezmilhouse

HTML

<div id="wrapper">
    <div id="one"></div>
    <div id="two"></div>
    <div id="three"></div>
</div>

CSS

div {
    float: left;
}

#wrapper {
    width: 500px;
    background: black;
}

#one, #two, #three {
    width: 200px;
    height: 40px;
    background: red;
}

#two {
    background: yellow;
}

#three {
    width: 100px;
    background: pink;
}

JavaScript

float: left;