Pattern:
[attr|=val]
Definition:
The [attr|=val] selector matches any element with the attr attribute, its value either being exactly val or beginning with val immediately followed by a hyphen ( - ), like lang="en-au".
Examples:
Match every <a> element whose lang attribute's value starts with "en"
a[lang|=en] { color: gold; }