- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Attribute Selector
The attribute selector in CSS is used to target HTML elements based on the presence, absence, or value of a given attribute. It’s a powerful tool for applying styles to elements with certain characteristics without having to add classes or IDs. Here are the different types of attribute selectors:
Presence and Value Selectors:
[attr]
: Selects elements with the specified attribute, regardless of its value.[attr=value]
: Selects elements with the specified attribute and value.
Substring Value Selectors:
[attr^=value]
: Selects elements whose attribute value begins with the specified value.[attr$=value]
: Selects elements whose attribute value ends with the specified value.[attr*=value]
: Selects elements whose attribute value contains the specified substring.
Specificity Value Selectors:
[attr|=value]
: Selects elements with the specified attribute whose value is exactlyvalue
or starts withvalue
followed by a hyphen.[attr~=value]
: Selects elements with the specified attribute whose value is a whitespace-separated list of words, one of which is exactlyvalue
.
Case Sensitivity:
[attr=value i]
: Selects elements with the specified attribute and value, case-insensitively.
Here’s an example to illustrate the use of attribute selectors:
CSS
/* Selects all <a> elements with a 'title' attribute */
a[title] {
color: purple;
}
/* Selects all <input> elements with a 'type' attribute of 'text' */
input[type="text"] {
background-color: yellow;
}
/* Selects all elements with a 'data-info' attribute containing '123' */
div[data-info*="123"] {
font-weight: bold;
}
In these examples:
- All
<a>
elements with atitle
attribute will have purple text. - All
<input>
elements of typetext
will have a yellow background.