Pattern:
[attr*=substring]
Definition:
The [attr*=substring] selector matches any element whose attr attribute value contains the substring substring.
Examples:
Style all <a> elements that have an href attribute value containing "w10schools"
1 | a[href*= "w10schools" ] { background-color : gold; } |
Please login to continue.