JSFiddle - React, Tailwind, and code Playground

by Terry Mun

HTML

<div class="content">

			<header>

			</header>
		</div>

CSS

.content {
  width: 300px;
  height: 200px;
    background: blue;
  position: relative;
  clear: both;
}

.content header {
  width: 100px;
  height: 100px;
  top: 50%;
  background: red;
  position: absolute;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}