Pattern:
[attr^=substring]
Definition:
The [attr^=substring] selector matches any element whose attr attribute value begins with the prefix substring.
Examples:
Style all <a> elements that have an href attribute value which begins with "https"
1 | a[href^= "https" ] { background : blueviolet; } |
Please login to continue.