JSFiddle - React, Tailwind, and code Playground

by 3rror404

HTML

<div class="parent">
  <div class="first">
    First
  </div>
  <div class="second">
    Second
  </div>
</div>

CSS

.parent{
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid purple;
}


.first {
  height: 100px;
  background: yellow;
}

.second {
  height: 100px;
  margin-top: -50px;
  background: salmon;
}