JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
</div>
CSS
.container{
height:400px;
background:red;
position:relative;
width:600px;
}
.container:after{
content:"";
position:absolute;
top:0px;
left:0;
right:20px;
bottom:0;
background:url(http://lorempixel.com/400/200) no-repeat right bottom;
}