JSFiddle - React, Tailwind, and code Playground

by web tiki

HTML

<div class="wrapper">
    <img src="http://lorempixel.com/output/fashion-q-c-960-600-8.jpg" />
    <div class="content">
        <div>
            <div>blahblab
                <br/>More blah blah blahblab
                <br/>More blah blah blahblab
                <br/>More blah blah blahblab
                <br/>More blah blah</div>
        </div>
    </div>
</div>

CSS

.wrapper {
    width:960px;
    margin:0 auto;
    position:relative;
}
.wrapper > img {
    width:100%;
    height:auto;
}
.content {
    top:0;
    position:absolute;
    width:100%;
    height:100%;
}
.content > div {
    display:table;
    width:100%;
    height:100%;
}
.content > div > div {
    display:table-cell;
    vertical-align:middle;
    text-align:center;
}