JSFiddle - React, Tailwind, and code Playground
by austegard
HTML
<article>
<h1>Style Scoped</h1>
<p>The scoped attribute for the style element will eventually allow for you to include style elements mid-document. To do this, you must mark up your style element with the scoped attribute.</p>
<section>
<style>
p { color: red; }
</style>
<h2>How does it work?</h2>
<p>It doesn't yet. SO I removed the scoped attribute - let's see if this validates...</p>
</section>
</article>