JSFiddle - React, Tailwind, and code Playground

by adamschwartz

HTML

<div class="box">
    This is a sentence.
</div>

<div class="box vertical-flow">
    This is a sentence with <code>writing-mode: vertical-rl</code>.
</div>

CSS

* {
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 2rem;
    color: #444;
}

.box {
    width: 40%;
    height: 40%;
    padding: 2rem;
    background: #eee;
    margin: 20px;
}

.vertical-flow {
    -ms-writing-mode: tb-rl; 
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}