JSFiddle - React, Tailwind, and code Playground

by tea4two

HTML

<div class="parent">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>4</div>
</div>

CSS

.parent {
  display: flex;
  width: 800px;
  margin: 0 auto;
  border: 2px solid grey;
  justify-content: space-between;
}

.parent div {
  width: 22.5%;
  height: 200px;
  background-color: yellow;
  margin-bottom: 20px;
}