JSFiddle - React, Tailwind, and code Playground

by Alexander Branchugov

HTML

<div class="a">
  <div class="a1">
  
  </div>
  
  <div class="a2">
  
  </div>
</div>

CSS

div {
  height: 30px;
}

.a {
  border: 1px solid;
  display: flex;
  justify-content: space-between;
  width: 200px;
}

.a1,
.a2 {
  background: #eee;
  width: 30px;
}