JSFiddle - React, Tailwind, and code Playground

by timhuang

HTML

<p>
  This is a horizontal ellipsis te&hellip;
</p>
<hr>
<p>
  This is a vertical ellipsis te&vellip;
</p>
<hr>
<div class="vclass">
  <p>
    床前明月光,
    疑是地上霜。
    舉頭望明月,
    低頭&hellip;
  </p>
</div>
<hr>
<div class="vclass">
  <p>
    床前明月光,
    疑是地上霜。
    舉頭望明月,
    低頭&vellip;
  </p>
</div>

CSS

.vclass{
  writing-mode: vertical-rl;
  height: 6em;
}