JSFiddle - React, Tailwind, and code Playground

by Manpreet Singh

HTML

<div id="content">
   <div id="dashboard">
      Some text
      <div class="widget">w1</div>
      <div class="widget">w2</div>
      ...
   </div>
</div>

CSS

html, body { height: 100%; }
#content {
    min-height: 100%;
    background: #eee;
}
#dashboard {
    background: #ccc;
    min-height: 100%;
    height: 100%;
}
.widget {
  height: 50px; /* arbitrary */
  width: 50px;
  position: absolute;
}