如何使用 CSS 或 HTML 使导航栏居中?

发布于 2024-11-06 17:58:10 字数 158 浏览 5 评论 0原文

我无法将导航栏置于此页面的中心。

我尝试了 nav { margin: 0 auto; } 和一堆其他方法,但我仍然无法将其居中。

I am having difficulty with centering the navigation bar on this page.

I tried nav { margin: 0 auto; } and a bunch of other ways, but I still can't center it.

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

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

发布评论

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

评论(7

泪痕残 2024-11-13 17:58:10
#nav ul {
    display: inline-block;
    list-style-type: none;
}

它应该有效,我在你的网站上测试了它。

在此处输入图像描述

#nav ul {
    display: inline-block;
    list-style-type: none;
}

It should work, I tested it in your site.

enter image description here

匿名。 2024-11-13 17:58:10

添加一些CSS:

div#nav{
  text-align: center;
}
div#nav ul{
  display: inline-block;
}

Add some CSS:

div#nav{
  text-align: center;
}
div#nav ul{
  display: inline-block;
}
再见回来 2024-11-13 17:58:10

如果您的导航

    带有 #nav 类
    然后您需要将该

      项放入 div 容器中。将 div 容器设置为 100% 宽度。并将 text-align: 元素设置为在 div 容器中居中。然后在您的

        中将该类设置为具有 3 个特定元素:text-align:center;位置:相对;并显示:内联块;

那应该将其居中。

If you have your navigation <ul> with class #nav
Then you need to put that <ul> item within a div container. Make your div container the 100% width. and set the text-align: element to center in the div container. Then in your <ul> set that class to have 3 particular elements: text-align:center; position: relative; and display: inline-block;

that should center it.

深海不蓝 2024-11-13 17:58:10

只需添加:

*{
    margin: 0;
    padding: 0;
}

nav{
    margin: 0 auto;
    text-align: center;
}

Just add :

*{
    margin: 0;
    padding: 0;
}

nav{
    margin: 0 auto;
    text-align: center;
}
只是我以为 2024-11-13 17:58:10

解决它的最佳方法我已经寻找了如何将导航菜单居中的代码或技巧,并找到了适用于所有浏览器和我的朋友的真正解决方案;)

这是我所做的:

body {
    margin: 0;
    padding: 0;
}

div maincontainer {
    margin: 0 auto;
    width: ___px;
    text-align: center;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin-left: auto;
    margin-right: auto;
}

并且不要忘记设置 doctype html5

The best way to fix it I have looked for the code or trick how to center nav menu and found the real solutions it works for all browsers and for my friends ;)

Here is how I have done:

body {
    margin: 0;
    padding: 0;
}

div maincontainer {
    margin: 0 auto;
    width: ___px;
    text-align: center;
}

ul {
    margin: 0;
    padding: 0;
}

ul li {
    margin-left: auto;
    margin-right: auto;
}

and do not forget to set doctype html5

摇划花蜜的午后 2024-11-13 17:58:10

您的 nav div 实际上已正确居中。但里面的ul却不是。给 ul 一个特定的宽度和中心。

Your nav div is actually centered correctly. But the ul inside is not. Give the ul a specific width and center that as well.

卷耳 2024-11-13 17:58:10

您还可以使用 float 和 inline-block 来居中导航,如下所示:

nav li {
   float: left;
}
nav {
   display: inline-block;
}

You could also use float and inline-block to center your nav like the following:

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