JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
  <p>
    Lorem
  </p>
  <p>
    ipsum
  </p>
</div>

CSS

/* Reset */
* {
  margin: 0;
  padding: 0;
}

/* CSS */
.container > p {
  margin-bottom: 1rem;
}