CSS [attribute] Selector


Example

Style all <a> elements with a target attribute:

a[target] {
  background-color: yellow;
}
Try it Yourself »

Definition and Usage

The [attribute] selector is used to select elements with the specified attribute.

Version: CSS2

Browser Support

The numbers in the table specifies the first browser version that fully supports the selector.

Selector
[attribute] 4.0 7.0 2.0 3.1 9.6

CSS Syntax

[attribute] {
  css declarations;
} Demo

Related Pages

CSS tutorial: CSS Attribute Selectors


Copyright 1999-2023 by Refsnes Data. All Rights Reserved.