JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<p class="number">1</p>
<p>+</p>
<p class="number">2</p>
<p>=</p>
<p class="result">3</p>
</div>
CSS
div {
background: darkred;
padding:8px;
}
p {
display:inline;
color:white;
}