JSFiddle - React, Tailwind, and code Playground

font-size-adjust test

by Travis Almand

HTML

<span class="one">b</span><span class="two">b</span>
<br /><br />
<span class="one adjust">b</span><span class="two adjust">b</span>
<br /><br />
<div class="one">the lazy fox jumped over the river</div>
<div class="two">the lazy fox jumped over the river</div>
<br /><br />
<div class="one adjust">the lazy fox jumped over the river</div>
<div class="two adjust">the lazy fox jumped over the river</div>

CSS

span {
  border: 1px solid red;
  font-size: 30px;
}
.adjust {
  font-size-adjust: 0.5;
}
.one {
  font-family: serif;
}
.two {
  font-family: sans-serif;
}