JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<span>Helloнн, WebRef!</span>
<span class="span">Hello, WebRef!</span>
</html>

CSS

span:first-child,
span:last-child {
    display: block;
}
span:first-child {
  transform: rotate(5deg);    
}
.span {
    transform: rotate(5deg);
}