Menu
Advanced Selectors

CSS Attr Selectors

Select by attribute existence or value.

1Attribute Matching

Target elements with specific attributes.

Example Code
a[target="_blank"] {
  color: red;
}
input[type="text"] {
  background: #f0f0f0;
}

Finished reading?

Mark this topic as complete to track progress.