JSFiddle - React, Tailwind, and code Playground

by Federico Tibaldo

HTML

<span>
	<strong>
		<i>
			Why though?
		</i>
	</strong>
</span>

CSS

*, *::after, *::before {
	outline: 1px solid red;
}

body {
	max-width: 300px;
	margin: 100px auto;
	line-height: 2.5;
	font-size: 3rem;
}

strong {
	line-height: 1.5;
	display: block;
	outline-color: green;
}