Pattern:
[attr$=substring]
Definition:
The [attr$=substring] selector matches any element whose attr attribute value ends with the suffix substring.
Examples:
Style all <a> elements that have an href attribute value which ends with ".zip"
1 | a[href$= ".zip" ] { background-color : antiquewhite; } |
Please login to continue.