JSFiddle - React, Tailwind, and code Playground
by chrisjg
HTML
<h1>page</h1>
<article>
<h1>Article</h1>
<section>
<h1>Section</h1>
<h2>sub-section</h2>
</section>
<section>
<h1>Section 2</h1>
</section>
</article>
CSS
h1 {
font-size: 3em;
font-weight: bold;
}
article h1 {
font-size: 2.5em;
}
article section h1 {
font-size: 2em;
}
h2 {
font-size: 1.5em;
font-weight: normal;
}
}