JSFiddle - React, Tailwind, and code Playground

HTML

<div class="home">
<div class="text">    
TEST TEST
</div>
</div>

CSS

div.home
{
position: static;
width:200px;
height:200px;    
background-color: yellow;
}
.text{
padding-top:80px;
padding-bottom:80px;
font-size:40px;
height:40px;
-webkit-transform: rotate(-90deg);
color:gray;
}