CSS [attribute=value] Selector


Example

Style <a> elements with a target="_blank":

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

More "Try it Yourself" examples below.


Definition and Usage

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

Version: CSS2

Browser Support

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

Selector
[attribute=value] 4.0 7.0 2.0 3.1 9.6

CSS Syntax

[attribute = value] {
  css declarations;
} Demo

More Examples

Example

When an <input type="text"> gets focus, gradually change the width from 100px to 250px:

input[type="text"] {
  width: 100px;
  transition: ease-in-out, width .35s ease-in-out;
}

input[type="text"]:focus {
  width: 250px;
}
Try it Yourself »

Related Pages

CSS tutorial: CSS Attribute Selectors


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