JSFiddle - React, Tailwind, and code Playground

by Spencer Smith

HTML

<div class="items">
  <div class="line">This is one line.</div>
  <div class="line">This is another line.</div>
</div>

CSS

.items {
  background-color: whitesmoke;
  padding: 10px;
  position: absolute;
}
.line {
  background-color: lightgreen;
}
.line + .line {
  margin-top: 10
}