JSFiddle - React, Tailwind, and code Playground

by nikolya223

HTML

<table class="table"><tr><td valign="middle"><div class="div">Тестовый див</div></td></tr></table>

CSS

html,
body {
    width:100%;
    height:100%;
}
table.table {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height:100%;
}

table.table td{
text-align: center;
}

table.table td>div.div {
display: inline;
padding: 10px 15px;
background: #6A6DE3;
border: 2px solid #272CD8;
color: #DCDFFA;

}