JSFiddle - React, Tailwind, and code Playground

by jamessouth

HTML

<div>
I <span>am</span> a sentence with some <span>big</span> words that spans many lines. What does <span>my</span> line height do?
</div>
<div>
😀
</div>

CSS

span {
  font-size: 2em;
}

body {
  font-family: "segoe ui";
  font-size: 24pt;
  background-color: #222;
  color: white
}

div {
  display: inline-block;
  background-color: black;
  /*writing-mode: vertical-lr;
  text-orientation: upright;
  max-height: 460px;*/
  width: auto;
  max-width: 400px;
  /*line-height: 1.5 !important;*/
}