JSFiddle - React, Tailwind, and code Playground

by jack_pallot

HTML

<div class="full bg-1"></div>
<div class="full bg-2"></div>

CSS

html, body {
  width: 100%;
  height: 100%;
}

.full {
  width: 100%;
  height: 100%;
}

.bg-1 {
  background: mediumaquamarine;
}

.bg-2 {
  background: tomato;
}