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
|
---
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>
{{Specifications}}
<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>
|