JSFiddle - React, Tailwind, and code Playground

by brandondurham

HTML

<section>
  <div class="header">
    <h1>Header 1</h1>
  </div>

  <div class="item">
    <h1>Item1</h1>
  </div>

  <div class="item">
    <h1>Item2</h1>
  </div>
</section>
<section>
  <div class="header">
    <h1>Header 2</h1>
  </div>

  <div class="item">
    <h1>Item1</h1>
  </div>

  <div class="item">
    <h1>Item2</h1>
  </div>
</section>

CSS

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: #000;
  font: bold 20vw "Helvetica Neue", Arial, sans-serif;
}

.header {
  position: sticky;
  top: 0px;
  background: white;
}

.item {
  background: #00f;
}