JSFiddle - React, Tailwind, and code Playground
by cathead
HTML
<div>hello</div>
<p class="foo">hello</p>
<p class="foo">goodbye</p>
<div>foooooo</div>
<p class="foo">goodbye</p>
CSS
.foo {
color: gold;
}
.foo:nth-last-of-type(1) {
color: purple;
}