使用 960 网格时导航菜单无法正确居中

发布于 2024-10-21 11:53:43 字数 413 浏览 2 评论 0原文

我正在尝试为某人创建基本档案,并正在练习使用 960 网格系统。

从那时起,我已经掌握了使用网格足以定位大多数元素的技巧,但是菜单对我来说似乎有点偏离,右侧似乎比左侧大,即使我将菜单本身居中且其宽度为 100% 。

有人知道它为什么会播放吗?

网站网址为 http://digitalgenesis.com.au/sites/alice css 是 http://digitalgenesis.com.au/sites/alice/css/main .css

im trying to create a basic profile for someone and am practicing using the 960 grid system.

I've since got the hang of using grids enough to position most elements, however the menu seems a little off to me, the right side seems to be bigger then the left, even though ive centered the menu itself and its at 100% width.

Does anybody have any ideas on why it is playing up?

Site url is http://digitalgenesis.com.au/sites/alice
css is http://digitalgenesis.com.au/sites/alice/css/main.css

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

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

发布评论

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

评论(2

凉城 2024-10-28 11:53:43

减少“.nav a:hover”-s 填充。我认为这就是问题所在。

Reduce the ".nav a:hover"-s padding. I think this is the problem.

ぶ宁プ宁ぶ 2024-10-28 11:53:43

尝试这样的 CSS:

.nav{margin-top: 20px;background:black; color:white;  padding-top:10px; padding-bottom:10px;text-align:center; }

.nav li{display:inline; }
.nav a:hover{background:white; color:black; padding:10px 0px 10px 0px;}
.nav a{text-decoration:none; color:white; }
.footer{background:black; color:white; margin-top:20px; position:fixed; width:100%; bottom:0px;}

#top{width:100%; background:black; color:white;}

.title{font-size:26px; margin-top:45px; padding-left :10px;}

.wrapper{margin-top:50px;}

.logo{margin-left:0px;}

Try the CSS like this:

.nav{margin-top: 20px;background:black; color:white;  padding-top:10px; padding-bottom:10px;text-align:center; }

.nav li{display:inline; }
.nav a:hover{background:white; color:black; padding:10px 0px 10px 0px;}
.nav a{text-decoration:none; color:white; }
.footer{background:black; color:white; margin-top:20px; position:fixed; width:100%; bottom:0px;}

#top{width:100%; background:black; color:white;}

.title{font-size:26px; margin-top:45px; padding-left :10px;}

.wrapper{margin-top:50px;}

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