JSFiddle - React, Tailwind, and code Playground

by Chedy Missaoui

HTML

<div class="container">
  <div class="element">1</div>
  <div class="element">2</div>
  <div class="element">3</div>
</div>
<p>
techdominator.com
</p>

CSS

.container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 2em;
}

.element {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Helvetica;
  color: #151B54;
  width: 50px;
  height: 50px;
  border: 2px #151B54 solid;
  background-color: orchid;
}