Flexbox with Position Sticky

by Louis Walch

HTML

<div class="flexbox-wrapper">
  <div class="regular">
    This is the regular box
  </div>
  <div class="sticky">
    This is the sticky box
  </div>
</div>

CSS

.flexbox-wrapper {

  margin-top: 100px;
  display: flex;
  height: 200px;
}
.regular {
  background-color: blue;
  height: 600px;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-self: flex-start;
  background-color: red;
}