Attribute selectors
a[target] | With a target attribute |
a[target="_blank"] | Open in new tab |
a[href^="/index"] | Starts with /index |
[class|="chair"] | Starts with chair |
[class*="chair"] | containing chair |
[title~="chair"] | Contains the word chair |
a[href$=".doc"] | Ends with .doc |
[type="button"] | Specified type |
See also: Attribute selectors |
Comments