Definition and Usage
The :lang CSS pseudo-class matches elements based on the language the element is determined to be in. In HTML, the language is determined by a combination of the lang attribute, the <meta> element, and possibly by information from the protocol (such as HTTP headers). For other document types there may be other document methods for determining the language.
Acceptable language-code strings are specified in the HTML 4.0 specification.
Syntax
element:lang(language-code) { style properties }
Examples
In this example, the lang selector is used to match on the parent of a quote element using child selectors. Its not meant to demonstrate the only way to do this, or even the correct way (which would depend on the type of document). Note, Unicode values are used to specify special quote characters.
1 |
:lang(en) > Q { quotes : '\201C' '\201D' '\2018' '\2019' ; } |
2 |
:lang(fr) > Q { quotes : '« ' ' »' ; } |
3 |
:lang(de) > Q { quotes : '»' '«' '\2039' '\203A' ; } |
…where…
1 |
< div lang = "fr" >< q >This French quote has a < q >nested</ q > quote.</ q ></ div > |
2 |
< div lang = "de" >< q >This German quote has a < q >nested</ q > quote.</ q ></ div > |
3 |
< div lang = "en" >< q >This English quote has a < q >nested</ q > quote.</ q ></ div > |
… should look like …
«This French quote has a «nested» quote.»
»This German quote has a ‹nested› quote.«
“This English quote has a ‘nested’ quote.”
Compatibility
Desktop browsers
Feature |
Chrome |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
Basic support |
1.0 |
1.0 (1.7 or earlier) |
8.0 |
8.0 |
3.1 |
Mobile browsers
Feature |
Android |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
Basic support |
1.0 |
1.0 (1) |
8.0 |
8.0 |
3.1 |