Attribute Selectors

CSS attribute selectors allow you to style elements based on their attributes and values, providing greater flexibility in targeting elements.

SelectorExampleDescription
[attribute]input[disabled]Selects elements with a specified attribute
[attribute=value]input[type="text"]Selects elements with an exact attribute value
[attribute~=value]div[class~="box"]Selects elements with an attribute containing a word (space-separated list)
[attribute^=value]a[href^="https"]Selects elements where the attribute starts with a specific value
[attribute$=value]img[src$=".jpg"]Selects elements where the attribute ends with a specific value
[attribute*=value]a[href*="google"]Selects elements where the attribute contains a specific value

Explanation of Selectors

SelectorDescriptionExample Usage
[attribute]Targets elements that have a specific attributeinput[required] { border: red; }
[attribute=value]Matches exact valueinput[type="checkbox"] { width: 20px; }
[attribute~=value]Matches a word in a space-separated listdiv[class~="featured"] { background: yellow; }
[attribute^=value]Matches attributes that start with a valuea[href^="https"] { color: green; }
[attribute$=value]Matches attributes that end with a valueimg[src$=".png"] { border-radius: 10px; }
[attribute*=value]Matches attributes containing a valuea[href*="facebook"] { font-weight: bold; }

Example:

/* Select all input fields with type text */
input[type="text"] {
    border: 2px solid blue;
}
/* Highlight all links that start with "https" */
a[href^="https"] {
    color: green;
}
/* Add a red border to images ending with .jpg */
img[src$=".jpg"] {
    border: 3px solid red;
}

✔ Ensures specific styling for different attributes

✔ Improves precision when styling elements dynamically

Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad