JSFiddle - React, Tailwind, and code Playground
HTML
<div class="fl">
<span class="titleTextV">My ass ABC</span>
</div>
CSS
.titleTextV{
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
font-size:1.3em;
background:#555;
height:100%;
width:20px;
display: inline-block;
}
.fl {border: 1px solid red;
}
JavaScript
$('.fl').height($('.titleTextV').width());