HTML – 在Bootstrap 3导航栏中使用NAV和DIV有什么区别?

前端之家收集整理的这篇文章主要介绍了HTML – 在Bootstrap 3导航栏中使用NAV和DIV有什么区别?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在最新的Bootstrap 3导航栏的示例中,我在Web上找到了外部导航栏标记所在的各种示例
<div class="navbar navbar-default navbar-static-top">...</div>

和其他例子正在使用

<nav class="navbar navbar-default" role="navigation">...</nav>

所有示例都执行正常,文档调用NAV。这让我想知道网络上的很多例子是否是版本3中没有重写的版本2剩余部分,或者可以使用周围的标记

Example

解决方法

< NAV>是主要导航元素的语义HTML5容器元素。

The nav is a block level element used to denote a section of major navigational links on a page. Not all links should be wrapped within a nav element. The nav should be reserved for primary navigation sections including universal navigation,a table of contents,breadcrumbs,prevIoUs/next links,or other noteworthy groups of links.

http://learn.shayhowe.com/html-css/elements-semantics

如果您使用的是HTML5,那么您应该使用nav。

原文链接:https://www.f2er.com/html/232557.html

猜你在找的HTML相关文章