JSFiddle - React, Tailwind, and code Playground

HTML

<div class="parent">
    <p>Regular Paragraph</p>
    <p class="note">Note paragraph</p>
</div>

CSS

.parent p {
    font-size: 1.5em;
}
p.note {
    font-size: 90%;
}