aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css/_colon_empty/index.html
blob: b922f9a29ccf0f6c3f1b47a51720e391e291017f (plain)
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
---
title: ':empty'
slug: 'Web/CSS/:empty'
tags:
  - CSS
  - CSS Pseudo-class
  - Layout
  - Reference
  - Web
  - Псевдоклассы
translation_of: 'Web/CSS/:empty'
---
<p>{{ CSSRef() }}</p>

<h2 id="Summary">Описание</h2>

<p>{{ Cssxref("pseudo-classes", "Псевдокласс") }} <code>:empty</code> находит любой элемент, у которого нет потомков. Учитываются элементы и текст (включая пробелы). Комментарии не повлияют на то, что элемент будет рассматриваться как не пустой.</p>

<h2 id="Syntax">Синтаксис</h2>

<pre class="syntaxbox notranslate">&lt;element&gt;:empty { <em>/* стили</em> */ }
</pre>

<h2 id="Examples">Примеры</h2>

<pre class="brush: css notranslate">.box {
  background: red;
  height: 200px;
  width: 200px;
}

.box:empty {
  background: lime;
}
</pre>

<pre class="brush: html notranslate">&lt;div class="box"&gt;&lt;!-- Я буду лаймовым --&gt;&lt;/div&gt;
&lt;div class="box"&gt;Я буду красным&lt;/div&gt;
&lt;div class="box"&gt;
    &lt;!-- Я буду красным, так как перед комментарием стоят пробелы --&gt;
&lt;/div&gt;</pre>

<h2 id="Specifications">Спецификации</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', '#empty-pseudo', ':empty') }}</td>
   <td>{{ Spec2('CSS4 Selectors') }}</td>
   <td>Без изменений</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS3 Selectors', '#empty-pseudo', ':empty') }}</td>
   <td>{{ Spec2('CSS3 Selectors') }}</td>
   <td>Изначальное определение</td>
  </tr>
 </tbody>
</table>

<h2 id="Поддержка_браузерами">Поддержка браузерами</h2>

<p>{{Compat("css.selectors.empty")}}</p>