JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div
{
width: 400px;
height: 200px;
background: url('http://placehold.it/400x200');
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
background-repeat: no-repeat;
position: relative;
}
div:after
{
content: '';
display: block;
position: absolute;
width: 400px;
height: 200px;
background: url('http://placehold.it/400x200');
background-repeat: no-repeat;
-webkit-transform: scaleY(-1);
transform: scaleY(-1);
top: -200px;
}