JSFiddle - React, Tailwind, and code Playground
HTML
<p><a href='#'>123</a></p>
<p><a href='https://google.com' target='_blank'>321</a></p>
CSS
a[href='#'] { color: red; }
a:contains("321") { color: green; }
a[text='321'] { color: green; }
<p><a href='#'>123</a></p>
<p><a href='https://google.com' target='_blank'>321</a></p>
a[href='#'] { color: red; }
a:contains("321") { color: green; }
a[text='321'] { color: green; }