JSFiddle - React, Tailwind, and code Playground

by Morpheus_God

HTML

<div class="blocks">
  <div class="block">
    
  </div>

 
</div>

CSS

.blocks{
  width:500px;
  border:1px solid black;
  display: flex;
}

.block{
  background-color: red;
  width: 50px;
  border:1px solid green;
  height: 50px;
  align-self:flex-end;
}