JSFiddle - React, Tailwind, and code Playground
HTML
<div id="table">
<div id="inside-table" >
<span>Hello</span>
</div>
</div>
CSS
#table {
width: 100%;
height: 100px;
border: solid 1px black;
background-color: transparent;
}
#inside-table {
position: relative;
width: 98%;
height: 80px;
background-color: transparent;
border: solid 1px black;
margin: 0 auto;
margin-top: 10px;
}
#inside-table span {
position: relative;
top: 50%;
transform: translateY(-50%);
}