JSFiddle - React, Tailwind, and code Playground

by eddiriarte

HTML

<div id="banner-content" class="banner-content">

  <div class="h-content" id="h-content">
    <h1>Ăśberschrift</h1>
  </div>

</div>
https://jsfiddle.net/#save

CSS

#body {
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: 100%;
  padding-top: 0px;
  font-size: 100%;
  margin: 0px auto;
}


/* Top Banner for Content Pages */

#banner-content {
  width: inherit;
  height: 100px;
  background: #ccc;
  margin: 5px 0px;
}

#h-content {
  height: inherit;
  display: table-cell;
  vertical-align: middle;
  background: #ddd;
  position: relative;
  font-family: Arial;
}