JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<h1>This</h1> is the start of some text and it's a paragraph and I didn't eat enough nachos yesterday.
</div>
<div>
<h2>This</h2> is the start of some text and it's a paragraph and I didn't eat enough nachos yesterday.
</div>
CSS
div { width: 200px; }
h1 {
font-size: 25px;
display: inline;
}
h2 {
font-size: 25px;
display: inline-block;
width: 70px;
height: 25px;
background-color: #eee;
}