JSFiddle - React, Tailwind, and code Playground

by vjeux

HTML

<div>
    <div class="container">
        <div class="first"></div>
        <div class="second"></div>
    </div>
</div>

CSS

div {
  display: flex;
}

.container {
    height: 100px;
    flex-wrap: wrap;
    flex-direction: column;
    background: blue;
}

.first {
    height: 150px;
    margin-right: 20px
}

.second {
    width: 10px;
    height: 10px;
    background: red;
}

JavaScript

// The container (blue) DOES NOT wrap the red box