JSFiddle - React, Tailwind, and code Playground

by Rodwyn Moreno

HTML

<div class="dad">
  <div class="first">xxx</div>
  <div class="second">yyy</div>
  <div class="third">zzz</div>
</div>

CSS

.dad {
  border: gray solid 1px;
  width: 320px;
  height: 500px;
  padding: 20px;
  display: grid;
}

.child {
  border: blue solid 1px;
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
}