Attribute Selector

Attribute selectors target elements with a specific attribute.

Preview

Code

<style>
a[target]{
color:#2563eb;
}
</style>

<a href="#">Normal Link</a>
<a href="#" target="_blank">Link with target attribute</a>

More CSS Selectors Examples (7)