JSFiddle - React, Tailwind, and code Playground

HTML

<div>1<span>2<span>3</span></span></div>

CSS

body { font-size: 20px; }
div { display: table; border: 2px solid red; border-spacing: 3px; font-size: 200%; }
div:before { display: table-cell; content: ':before'; border: 1px solid green; }
div:after{ display: table-row; content: ':after'; background: #ccf; }
div * { font-size: 125%; }