CSS [attribute] Selector
Example
Select and style all <a> elements with a target attribute. Also select and style all <p> elements with a lang attribute:
a[target] {
background-color: yellow;
}
p[lang] {
background-color: salmon;
}
Try it Yourself »
Definition and Usage
The CSS [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
Related Pages
CSS tutorial: CSS Attribute Selectors