JSFiddle - React, Tailwind, and code Playground

by srosengren

HTML

<div class="container">
    <div class="tile-row three">
        <div class="tile"></div>
        <div class="tile"></div>
        <div class="tile"></div>
        <div class="tile"></div>
    </div>
</div>

CSS

.container {
    width: 1000px;
    margin: 10px auto;
    padding: 10px 0;
    background-color: #eee;
}

.tile-row {
    box-sizing: border-box;
    width: 115%;
    margin-left: -15%;
    min-height: 20px;
    background-color: blue;
    overflow: hidden;
}

.tile {
    width: 11.961%%;
    padding-bottom: 22%%;
    margin: 0  0 3% 13.04%; 
    background-color:red;
    float:left;
    box-sizing: border-box;
}