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

Note: For [attribute] to work in IE8 and earlier, a <!DOCTYPE> must be declared.


CSS Syntax

[attribute] {
    css declarations;
} Demo


Related Pages

CSS tutorial: CSS Attribute Selectors



Color Picker

colorpicker