diff options
Diffstat (limited to 'files/ru/web/html/element/legend/index.html')
-rw-r--r-- | files/ru/web/html/element/legend/index.html | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/files/ru/web/html/element/legend/index.html b/files/ru/web/html/element/legend/index.html new file mode 100644 index 0000000000..1b9b7eda8e --- /dev/null +++ b/files/ru/web/html/element/legend/index.html @@ -0,0 +1,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> |