JSFiddle - React, Tailwind, and code Playground
HTML
<section class="wrapper">
<div class="left">
</div>
</section>
<h1>hea<span class="highlight">fig</span></h1>
<p><span class="highlight">ghfshgsjgsjfjg</span> ghfshgsjgsjfjg ghfshgsjgsdasdaddajfjg ghfshgsjgsjfjg</p>
SCSS
.wrapper{
display: flex;
height: 500px;
.left{
background-color: #7dd5c9;
width: 30%;
}
}
.highlight {
background-color: yellow;
}