JSFiddle - React, Tailwind, and code Playground

by Israel Brewster

HTML

<div id="topDiv">
  <div id="insideDiv">
    Some inside content
    <br> More inside content
    <br> More inside content
    <br> More inside content
    <br> More inside content
    <br>
  </div>
</div>

CSS

html,
body {
  height: 100%;
}

#topDiv {
  background-color: lightblue;
  height: 50px;
  width: 100%;
  padding: 10px;
}

#insideDiv {
  background-color: pink;
  max-height: 100%;
  overflow-y:auto;
}