JSFiddle - React, Tailwind, and code Playground

by davidcl64

HTML

<div id="wrapper">
    <div id="im">
    </div>
</div>

CSS

#wrapper {
    width:400px;
    height:400px;
    border:2px black solid;
    margin:auto;
    position: relative;
}
#im {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("//www.feedmypetsonline.com/wp-content/uploads/2012/01/pet-cats.jpg");
    xbackground-image: url("//fbcdn-profile-a.akamaihd.net/hprofile-ak-frc1/c22.22.281.281/s160x160/406383_413994728664941_212229531_n.jpg");
    background-repeat: no-repeat;
    background-size: contain;
}