JSFiddle - React, Tailwind, and code Playground

by dima_k

HTML

<h1>Sample Header Tag!</h1>
<br/>
<p class="class-name">Paragraph with class</p>
<br/>
<p>Paragraph without class</p>
<br/>
<div class="class-name">
    <p id="some-element">Paragraph inside a div with class</p>
</div>

CSS

/* You can also use it with classes, id's and even combine them */
p, .some-class, #some-id {
    font-weight: bold;
}