JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="foo">
it's the end of the world as we know it.
</div>
<div class="bar">hello i ove you wont yout ell me you rname?</div>
</div>
CSS
.container {
background: mediumvioletred;
}
.foo {
writing-mode: vertical-lr;
padding-block-end: 30px;
background: yellow;
width: 100%;
}
.bar {
writing-mode: vertical-rl;
background: pink;
width: 100%;
}