1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
---
title: ':lang()'
slug: 'Web/CSS/:lang'
tags:
- CSS
- Псевдо-класс
translation_of: 'Web/CSS/:lang'
---
<div>{{CSSRef}}</div>
<p><a href="/en-US/docs/Web/CSS/Pseudo-classes">Псевдо-класс</a> <a href="/en-US/docs/Web/CSS">CSS</a> <strong><code>:lang()</code></strong> выбирает элементы основываясь на языке, на котором они определены.</p>
<pre class="brush: css no-line-numbers">/* Выбирает все <p>, что на английском (en) */
p:lang(en) {
quotes: '\201C' '\201D' '\2018' '\2019';
}</pre>
<div class="note">
<p><strong>Примечание:</strong> В HTML язык определяется комбинацией атрибута {{htmlattrxref("lang")}}, элемента {{HTMLElement("meta")}} и иногда информацией из протокола (такой, как заголовки HTTP ). Для других типов документов могут быть другие методы определения языка.</p>
</div>
<h2 id="Синтаксис">Синтаксис</h2>
<h3 id="Формальный_синтаксис">Формальный синтаксис</h3>
{{csssyntax}}
<h3 id="Параметр">Параметр</h3>
<dl>
<dt><code><language-code></code></dt>
<dd>{{cssxref("<string>")}}, представляющая язык, который вы хотите отобрать. Допустимые значения указаны в документации <a href="/en-US/docs/Web/HTML">HTML</a>.</dd>
</dl>
<h2 id="Пример">Пример</h2>
<p>In this example, the <code>:lang()</code> pseudo-class is used to match the parents of quote elements ({{htmlElement("q")}}) using <a href="/en-US/docs/Web/CSS/Child_selectors">child combinators</a>. Note that this doesn't illustrate the only way to do this, and that the best method to use depends on the type of document. Also note that {{glossary("Unicode")}} values are used to specify some of the special quote characters.</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><div lang="en"><q>This English quote has a <q>nested</q> quote inside.</q></div>
<div lang="fr"><q>This French quote has a <q>nested</q> quote inside.</q></div>
<div lang="de"><q>This German quote has a <q>nested</q> quote inside.</q></div>
</pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">:lang(en) > q { quotes: '\201C' '\201D' '\2018' '\2019'; }
:lang(fr) > q { quotes: '« ' ' »'; }
:lang(de) > q { quotes: '»' '«' '\2039' '\203A'; }
</pre>
<h3 id="Результат">Результат</h3>
<p>{{EmbedLiveSample('Example', 350)}}</p>
<h2 id="Спецификации">Спецификации</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Спецификация</th>
<th scope="col">Статус</th>
<th scope="col">Комментарий</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS4 Selectors', '#lang-pseudo', ':lang()')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>Adds wildcard language matching and comma-separated list of languages.</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#lang-pseudo', ':lang()')}}</td>
<td>{{Spec2('CSS3 Selectors')}}</td>
<td>No significant change.</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'selector.html#lang', ':lang()')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>
<div>
<p>{{Compat("css.selectors.lang")}}</p>
</div>
<h2 id="Также_смотрите">Также смотрите</h2>
<ul>
<li>Language-related pseudo-classes: {{cssxref(":lang")}}, {{cssxref(":dir")}}</li>
<li>HTML {{htmlattrxref("lang")}} attribute</li>
<li><a class="external" href="https://tools.ietf.org/html/bcp47">BCP 47 - Tags for Identifying Languages</a></li>
</ul>
|