JSFiddle - React, Tailwind, and code Playground

by mrtoxas

HTML

<div class="container">
  <div>Элемент 1</div>
  <div>Элемент 2</div>
  <div>Элемент 3</div>
  <div>Элемент 4</div>
  <div>Элемент 5</div>
</div>

CSS

.container {
  display: flex;
  flex-wrap: wrap;
  
  width: 600px;
  min-height: 20px;
  border: 1px solid #000;
  margin-bottom: -20px;
}

.container div {
  width: 150px;
  padding: 10px 0;
  background-color: green;
  text-align: center;
  margin-bottom:20px;
  
}

.container div:first-child {
  background-color: red;  
}