JSFiddle - React, Tailwind, and code Playground
HTML
<div class="wrap">
<a href="" class="button">hide this one</a>
<div> Some other stuff</div>
<a href="" class="button">don't hide this one</a>
</div>
CSS
.button:nth-of-type(1) {
display:none;
}