JSFiddle - React, Tailwind, and code Playground

HTML

<div class="a">
    Some text
    <div class="b">
        Some other text
    </div>
</div>

CSS

.a {
    font-size: 3em;
}
.a .b {
    font-size: 1.2em;
}