JSFiddle - React, Tailwind, and code Playground

by Ian Hazzard

HTML

<div class="img-container" style="background-image:url('http://placekitten.com/1000/1000')"></div>

CSS

html,body
{
    height:100%;
}

.img-container {
      max-width: 278px;
      max-height:172px;
      height: 100%;
      width: 100%;
      overflow: hidden;
      background-size: cover;
      background-position: center;
   }