发布于 2024-10-18 05:11:32 字数 63 浏览 2 评论 0原文

HTML 5

What elements can the HTML 5 <nav> element contain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

錯遇了你 2024-10-25 05:11:32

nav 元素是一个新的语义元素。它用于导航或目录。每个导航可能包括其他 HTML 元素,特别是链接列表。 nav 元素适用于链接块,而不是文本内容中提到的单个链接或节或文章页脚区域中的链接。

它用专门作为导航区域的语义元素替换了元素的概念。

与 HTML5 中的其他新语义元素一样,一页上可能有多个 nav 元素。也许是全局站点导航和站点子部分的二级导航块。它们可以使用诸如单独的 id 或类属性之类的钩子来设计样式,或者根据它们在页面上的嵌套位置使用后代选择器。

例如,这些 html 元素可以在 nav 内部使用:
h1、ul、li、a

The nav element is a new semantic element. It is meant for navigation or a table of contents. Each nav may include other HTML elements, particularly lists of links. The nav element is meant for blocks of links, not for individual links mentioned in textual content or for links in the footer area of a section or article.

It replaces the concept of a element with a semantic element meant specifically as a navigation area.

As with other new semantic elements in HTML5, there may be more than one nav element on a page. Perhaps global site navigation and secondary level navigation blocks for subsections of a site. They can be styled with hooks like individual id or class attributes, or using descendant selectors based on where they are nested on the page.

for example these html elements can be used inside of nav:
h1, ul, li, a

偏闹i 2024-10-25 05:11:32

HTML 5 规范 定义了

nav 元素表示链接到其他页面的页面部分
或页面内的部分:带有导航链接的部分。并非所有团体
页面上的链接数量需要位于 nav 元素中,仅包含以下部分的部分
主要导航块适用于 nav 元素。尤其,
页脚通常有一个指向页面各个关键部分的链接列表
站点,但页脚元素在这种情况下更合适,并且没有 nav
元素对于这些链接是必需的。

html5doctor.com对该元素有非常好的描述。

The HTML 5 specification defines <nav> as:

The nav element represents a section of a page that links to other pages
or to parts within the page: a section with navigation links. Not all groups
of links on a page need to be in a nav element only sections that consist of
major navigation blocks are appropriate for the nav element. In particular,
it is common for footers to have a list of links to various key parts of a
site, but the footer element is more appropriate in such cases, and no nav
element is necessary for those links.

html5doctor.com has a very good description of the element.

夏雨凉 2024-10-25 05:11:32

根据 MDN Web 文档

流程内容是一个广泛的类别,包含大多数元素...包括标题元素、分段元素、短语元素、嵌入元素、交互元素和表单相关元素。

According to the MDN Web Docs, the <nav> element is permitted to contain elements that are considered flow content.

Flow content is a broad category that encompasses most elements...including heading elements, sectioning elements, phrasing elements, embedding elements, interactive elements, and form-related elements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文