导航菜单中的 CSS 错误

发布于 2024-11-03 19:16:21 字数 204 浏览 2 评论 0原文

我正在创建我的投资组合。在执行此操作时,我在顶部菜单中遇到了一个错误。它向左对齐。我尽我所能来解决这个问题。我需要它居中对齐。有人可以帮我吗?网址为 http://jilsonthomas.com

而且页脚未延伸到流两侧。 (左右)请帮忙...

干杯...

I'm creating my portfolio. While doing that I just come across with an error in the top menu. It's aligned to left. I tried my level best to solve that problem. I need that to be central aligned. Can anyone please help me? Url is http://jilsonthomas.com

Also footer is not extending to the stream sides. ( both left and right) please help....

Cheers...

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

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

发布评论

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

评论(1

弄潮 2024-11-10 19:16:21

您可以通过使用 display: inline-block; 使列表成为内联元素并在其父 div# 上指定 text-align:center; 来使菜单居中菜单

#menu{
    ...
    text-align:center;
}

#menu ul{
    ...
    display:inline-block;
    margin:0;
    padding:0;
}

另一种选择是在列表上设置宽度并将其保留为块元素并指定自动左/右边距,但这有点黑客。

解决页脚问题 只需删除正文上的边距和填充即可。在本例中它是边距,但最好将它们都删除。我不确定,但它可能因浏览器而异。

body{
    margin:0;
    padding:0;
}

另外,您可能需要使用 CSS 重置 来避免像这样的各种问题。

希望这对您有帮助,
阿林

You can center the menu by making the list an inline element with display: inline-block; and by specifying text-align:center; on it's parent div#menu.

#menu{
    ...
    text-align:center;
}

#menu ul{
    ...
    display:inline-block;
    margin:0;
    padding:0;
}

Another option would be to set a width on the list and keep it a block element and specify margins left/right auto, but that would be kinda hackish.

To solve the footer issue just remove the margin and padding on the body. It's the margin in this case, but it's good to remove them both. I'm not sure, but it may vary from browser to browser.

body{
    margin:0;
    padding:0;
}

Also you may want to use a CSS reset to avoid all sorts of problems like this one.

Hope this helps you,
Alin

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