JSFiddle - React, Tailwind, and code Playground

by Mitch Canter

HTML

<div id="content">
    <section class="article">
        <p>Article Text</p>
    </section>
</div>

<div id="more-content">
    <section class="article">
        <p>More Article Text</p>
    </section>
</div>

CSS

#content > .article{
    background: #eee;
    padding: 10px;
}