JSFiddle - React, Tailwind, and code Playground

HTML

<div class="item rotate-90">
    Hello World!
</div>

CSS

.item {
    position: absolute;
    left: 500px;
    top: 500px;
}
.rotate-90 {
    -webkit-transform: rotate(90deg);
}
.tiny-size {
    -webkit-transform: scale(0.75, 0.25);
}