JSFiddle - React, Tailwind, and code Playground

by Torwan

HTML

<div class="wrapper">
    <img src="http://www.zwaldtransport.com/images/placeholders/placeholder1.jpg"/>
    <div class="outer-wrapper">
        <div class="table-cell-wrapper">
            <h1>My Title</h1>
            <h5>Subtitle</h5>
        </div>
    </div>
</div>

CSS

html, body {
margin: 0; padding: 0;
width: 100%; height: 100%;
}

.wrapper {
    background: #CCC;
    height: 100%;
    width: 100%;
    margin: 0; padding: 0;
    display: table;
}

img {
    width: 100%;
    height: 100%;
}

.outer-wrapper {
  position: absolute;
  display:table;
  width: 100%;
  height: 100%;
  top: 0;
  margin: 0; padding: 0;
}

.table-cell-wrapper {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 100%;
  height: 100%;  
}