Attribute Selector
Preview
Code
<style>
a[target]{
color:#2563eb;
}
</style>
<a href="#">Normal Link</a>
<a href="#" target="_blank">Link with target attribute</a>
<style>
a[target]{
color:#2563eb;
}
</style>
<a href="#">Normal Link</a>
<a href="#" target="_blank">Link with target attribute</a>