JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <img class="image">
     <div class="txt">
         hi<br>hi
    </div>
</div>

CSS

.container
{
    width: 300px;
    height: 300px;
    position: relative;
    border: 2px solid;
}

.image
{
    width: 100%;
    height:100%;
    border: 2px solid #ff0;
    position: absolute;
}

.txt
{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
    vertical-align: middle;
    line-height: 300px;
    text-align: center;
}