JSFiddle - React, Tailwind, and code Playground

by caio

HTML

<header>
   <div class="id">ID</div>
</header>

CSS

header {
  background-color: red;
  color: #2a6a17;
  display: table;
  font: normal 28.5pt 'Colonna MT'; 
  height: 150px;
  margin-top: 5px;
  text-align: center;
  width: 100%;
}

header .id {
  display: table-cell;
  vertical-align: bottom;
}