JSFiddle - React, Tailwind, and code Playground
by chovy
HTML
<h1 class="sarcasm">
this is sarcasm
</h1>
<h1 class="emphasis">
this is emphasis
</h1>
<h1 class="test">
this is a test
</h1>
CSS
.sarcasm {
transform: scale(1) rotate(0deg) translate(0px, 0px) skew(30deg, 0deg);
}
.emphasis {
font-style: italic;
}
.test {
transform: scale(1) rotate(0deg) translate(0px, 0px) skew(30deg, 0deg);
}