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"
a[href*="w10schools"] { background-color: gold; }
Please login to continue.