JSFiddle - React, Tailwind, and code Playground

by koh_edwin

HTML

<div>
    <a href="#" class="test">Test</a>
</div>

CSS

body div a.test{
    color:yellow;
}
body div .test{
    color:brown;
}
body a.test{
    color:purple;
}
body .test{
    color: orange;
}
a.test{
    color:green;
}
.test:focus {
    border: thin solid blue;
    color: red;
}