JSFiddle - React, Tailwind, and code Playground

HTML

<a href="example.com" title="My site"> Link </a>

<div class="my_class" anything="whatever">My Stuff</div>

CSS

a[title="My site"] {
        color: red;
}

.my_class[anything="whatever"] {
        color: green;
}