JSFiddle - React, Tailwind, and code Playground

by Ben Philipp

HTML

<div class="container">
    <div class="box">  
    </div>
</div>

CSS

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

.container {

    width: 100%;
    height: 100%;
    padding: 0 5%;
    box-sizing:border-box;
    background-color: yellow;
}

.box {
    height:100%;
    background: url(http://placehold.it/300) no-repeat center center;
    background-size: contain;
}