JSFiddle - React, Tailwind, and code Playground
HTML
<h2>Bộ chọn [attribute="value"] </h2>
<p>Liên kết với target="_blank" có màu nền vàng:</p>
<a href="https://timoday.edu.vn/">timoday.edu.vn</a>
<a href="http://www.disney.com" target="_blank">disney.com</a>
<a href="http://www.wikipedia.org" target="_top">wikipedia.org</a>
CSS
a[target=_blank] {
background-color: yellow;
}