JSFiddle - React, Tailwind, and code Playground
by Christine Abernathy
HTML
<div class="yoga"
style="width: 400px; height: 100px; background-color: white; flex-direction:row;">
<div class="yoga" style="background-color: #cc0000; width: 80px;"></div>
<div class="yoga" style="background-color: #0000cc; width: 80px;"></div>
</div>
CSS
.yoga {
box-sizing: border-box;
position: relative;
display: flex;
flex-direction: column;
align-items: stretch;
flex-shrink: 0;
align-content: flex-start;
justify-content: flex-start;
border: 0;
margin: 0;
padding: 0;
min-width: 0;
}