JSFiddle - React, Tailwind, and code Playground

by Kirk Ross

HTML

<div class="wrapper">
  <div class="one">1</div>
  <div class="two">2</div>
</div>

SCSS

.wrapper {
  width: 600px;
  height: 500px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-end; // this works
  align-items: flex-end;
  background-color: #eeeeee;
  resize: horizontal;
  overflow: auto;
  flex-wrap: wrap;
}

.one {
  width: 200px;
  height: 100px;
  background: red;
  margin-top: 100vh; // doesn't work
}

.two {
  width: 200px;
  height: 100px;
  background: blue;
}