JSFiddle - React, Tailwind, and code Playground

by gmcalab

HTML

<main>
<div class='panel'>


<div>
Hello World
</div>



</div>
<div class='s'>
Stuff
</div>

</main>

CSS

.panel {
  overflow: hidden;
  border: 1px solid red;
  display: grid;
  
}

main {
  display: flex;
  flex-direction: column;
}

.s{
  flex: 1;
  border: 1px solid red;
}