JSFiddle - React, Tailwind, and code Playground

by kboucher

HTML

<div class="container">
    <div class="inline_div"></div>
    <div class="inline_div"></div>
    <div class="inline_div"></div>
    <div class="inline_div"></div>
    <div class="right_div"></div>
</div>

CSS

.container {
    width: 1070px;
    background-color: #ff0000;
    overflow: hidden;
}

.inline_div {
    display: inline-block;
    width: 200px;
    height: 75px;
    background-color: #00ff00;
}

.right_div {
    float: right;
    height: 750px;
    width: 250px;
    background-color: #0000ff;
}