JSFiddle - React, Tailwind, and code Playground

by Oleg Khobotov

HTML

<div class="holder">
   <img class="centered-img" src="images/sample-img.jpg" height="40" width="120" alt="">
</div>

CSS

.holder {
    margin: 0 auto;
    display: block;
    width: 300px;
    height: 200px;
        position: relative;
    background-color: red;
}
.centered-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}