JSFiddle - React, Tailwind, and code Playground

by spookyburger

HTML

<div id="container">
  <div id="help_panel_red">
    Content goes here.
  </div>
  <div id="help_panel_yellow">
    Content goes here.
  </div>
</div>

CSS

#container {
  width: 960px;
  height: 400px;
  background: #ccc;
  margin: 0 auto;
}

#help_panel_red {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: red;
  color: white;
}

#help_panel_yellow {
  padding-top: 100px;
  height: 100px;
  background: yellow;
  color: black;
}