Pattern:
:lang
Definition:
The :lang pseudo-class matches the elements based on their human-language information.
Examples:
Style every <h1> element that has the en language (including "en-*") information.
h1:lang(en) { background-color: lightpink; }
Please login to continue.