JSFiddle - React, Tailwind, and code Playground

by babich_ss

HTML

<section>
    <article>
        <div></div>
        <div></div>
    </article>
    <article>
        <div></div>
        <div></div>
    </article>
    <article>
        <div></div>
        <div></div>
    </article>
</section>

CSS

section{
    display: -webkit-box;
    width: 1000px;
    height: 200px;
    background-color: #999;
}
article{
    width: 200px;
    height: 200px;
    background: #eee;
    margin-left: 10px;
}
div{
    width: 50px;
    height: 50px;
    background: black;
    float: left;
}