JSFiddle - React, Tailwind, and code Playground

by Emily Humphrey

HTML

<div class="text">
    <p id="red" class="blue">Hello</p>
    <p class="red blue">Hello</p>
</div>

CSS

#red{
    font-size: 1.2em;
    color: red;
}
.blue{
    color: blue;
}
h2.blue{
    color blue;
}
.text > h2.blue{
    color: blue;
}

.red{
    color: red;
}
.blue{
    color: blue;
}