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
|
---
title: <legend>
slug: Web/HTML/Element/legend
tags:
- HTML
- HTML forms
- Web
- element legend
- legend
translation_of: Web/HTML/Element/legend
---
<div>{{HTMLRef}}</div>
<p><strong>HTML-элемент <code><legend></code></strong> представляет собой заголовок содержания родительского элемента {{HTMLElement("fieldset")}}.</p>
<p>{{EmbedInteractiveExample("pages/tabbed/legend.html", "tabbed-standard")}}</p>
<table class="properties">
<tbody>
<tr>
<th scope="row"><a href="/ru/docs/HTML/Content_categories">Категории контента</a></th>
<td>Нет</td>
</tr>
<tr>
<th scope="row">Разрешённый контент</th>
<td><a href="/ru/docs/HTML/Content_categories#Phrasing_content">Фразовый контент</a>.</td>
</tr>
<tr>
<th scope="row">Пропуск тегов</th>
<td>{{no_tag_omission}}</td>
</tr>
<tr>
<th scope="row">Разрешённые родители</th>
<td>Является дочерним элементом тега {{HTMLElement("fieldset")}} </td>
</tr>
<tr>
<th scope="row">Разрешённые ARIA roles</th>
<td>Нет</td>
</tr>
<tr>
<th scope="row">Взаимодействие с DOM </th>
<td>{{domxref("HTMLLegendElement")}}</td>
</tr>
</tbody>
</table>
<h2 id="Атрибуты">Атрибуты</h2>
<p>Этот элемент включает только <a href="/ru/docs/HTML/Global_attributes">универсальные атрибуты</a>.</p>
<h2 id="Примеры">Примеры</h2>
<p>Смотрите {{HTMLElement("form")}} для примеров использования элемента <code><legend></code>.</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("HTML WHATWG", "forms.html#the-legend-element", "<legend>")}}</td>
<td>{{Spec2("HTML WHATWG")}}</td>
<td>Определение элемента <code>legend</code></td>
</tr>
<tr>
<td>{{SpecName("HTML5 W3C", "sec-forms.html#the-legend-element", "<legend>")}}</td>
<td>{{Spec2("HTML5 W3C")}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName("HTML4.01", "interact/forms.html#h-17.10", "<legend>")}}</td>
<td>{{Spec2("HTML4.01")}}</td>
<td>Первоначальное определение</td>
</tr>
</tbody>
</table>
<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2>
<p>{{Compat("html.elements.legend")}}</p>
<h2 id="Смотрите_также">Смотрите также</h2>
<ul>
<li>Другие связанные элементы: {{HTMLElement("form")}}, {{HTMLElement("option")}}, {{HTMLElement("label")}}, {{HTMLElement("button")}}, {{HTMLElement("select")}}, {{HTMLElement("datalist")}}, {{HTMLElement("optgroup")}}, {{HTMLElement("fieldset")}}, {{HTMLElement("textarea")}}, {{HTMLElement("keygen")}}, {{HTMLElement("input")}}, {{HTMLElement("output")}}, {{HTMLElement("progress")}} и {{HTMLElement("meter")}}.</li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Form_Role">ARIA: Form role</a></li>
</ul>
|