Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.
Это экспериментальная технология
Так как спецификация этой технологии ещё не стабилизировалась, смотрите таблицу совместимости по поводу использования в различных браузерах. Также заметьте, что синтаксис и поведение экспериментальной технологии может измениться в будущих версиях браузеров, вслед за изменениями спецификации.
Примечание использования: Этот элемент был удален из HTML5 (W3C) спецификации , но до сих пор остается в спецификации WHATWG. Он частично встроен в большинство браузеров, хотя бы поэтому врядли уйдет. Поскольку схематический алгоритм не реализован ни в одном брузере, семантика тега <hgroup>
на практике реализована только теоретически. Спецификация HTML5 (W3C) дает совет как обозначать подзаголовки, альтернативные заголовки и слоганы.
The HTML <hgroup>
Element (HTML Headings Group Element) represents the heading of a section. It defines a single title that participates in the outline of the document as the heading of the implicit or explicit section that it belongs to.
Its text for the outline algorithm is the text of the first HTML Heading Element of highest rank (i.e., the first <h1>
, <h2>
, <h3>
, <h4>
, <h5>
or <h6>
with the smallest number among its descendants) and the rank is the rank of this very same HTML Heading Element.
Therefore this element groups several headings, contributing only the main one to the outline of the document. It allows associating secondary titles, like subheadings, alternative titles, or even taglines, with the main heading, without polluting the outline of the document.
Content categories | Flow content, heading content, palpable content. |
---|---|
Permitted content | One or more <h1> , <h2> , <h3> , <h4> , <h5> , and/or <h6> . |
Tag omission | None, both the starting and ending tag are mandatory. |
Permitted parent elements | Any element that accepts flow content. |
DOM interface | HTMLElement |
Attributes
This element only includes the global attributes.
Examples
<hgroup> <h1>Main title</h1> <h2>Secondary title</h2> </hgroup>
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 5 | 4.0 (2.0) | 9.0 | 11.10 | 4.1 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | 2.2 | 4.0 (2.0) | 9.0 | 11.0 | 5.0 |