Attribute Selectors
/* <a> with a title attribute */
a[href] {
color: green;
}/* <a> with href value of "https://algonquincollege.com" */
a[href="https://algonquincollege.com"] {
color: green;
}/* <a> with href that begins with "http" */
a[href^="http"] {
color: green;
}
/* <a> with href that contains "abc.com" */
a[href*="abc.com"] {
color: blue;
}
/* <a> with href that ends with ".pdf" */
a[href$=".pdf"] {
color: red;
}Last updated