JSFiddle - React, Tailwind, and code Playground

HTML

<p class="doubleWidth">DOUBLE WIDTH</p>
<hr />
<p class="doubleHeight">Double Height</p>
<hr />
<p class="doubleWidthandHeight">Double Width and Height</p>

CSS

p {
    -webkit-transform-origin: 0 0;
}
p.doubleWidth {
    -webkit-transform: scaleX(2);
}
p.doubleHeight {
    -webkit-transform: scaleY(2);
}
p.doubleWidthandHeight {
    -webkit-transform: scaleX(2) scaleY(2);
}