CSS- 导航列表项出现在导航 div 下方。但看起来在 Chrome 中找不到?

发布于 2024-10-29 23:08:20 字数 1256 浏览 0 评论 0原文

我的导航在 Chrome 中看起来不错,但在 Firefox 和 IE 中,列表项显示在导航容器 div 下方(大约下方 15 像素)。有人可以帮我吗?

这是链接: http://jwstudio.us/bkpa/

CSS:

nav {

position: relative;
background-image: none;
background-repeat: no-repeat;
float: left;
background-color: #DBD0CA;
z-index: 3;
margin-top: -115px;
margin-left: -2px;
height: 29px;
width: 945px;
margin-right: 10px;
background-position: left;

}

nav ul {

position: relative;
display: inline;
list-style-type: none;
height: 27px;
z-index: 4;
padding-top: 3px;
margin-top: -115px;

}

nav ul li a {

position: relative;
height: 27px;
float: left;
z-index: 5;
text-align: left;
padding-left: 11px;
list-style-type: none;
text-decoration: none;
color: #8F181B;
font-weight: normal;
font-size: 16px;
font-family: Verdana, Geneva, sans-serif;
padding-top: 3px;
padding-right: 10px;
padding-bottom: 0px;
background-color: #DBD0CA;

}

nav ul li a:hover, a:active {

position: relative;
height: 27px;
color: #FFF;
background-image: url(images/nav_rollover.png);
z-index: 6;
padding-top: 3px;

}

My navigation looks fine in Chrome but in Firefox and IE, the list items appear below (about 15 pixels below) the nav container div. Can someone please help me?

Here is the link: http://jwstudio.us/bkpa/

The CSS:

nav {

position: relative;
background-image: none;
background-repeat: no-repeat;
float: left;
background-color: #DBD0CA;
z-index: 3;
margin-top: -115px;
margin-left: -2px;
height: 29px;
width: 945px;
margin-right: 10px;
background-position: left;

}

nav ul {

position: relative;
display: inline;
list-style-type: none;
height: 27px;
z-index: 4;
padding-top: 3px;
margin-top: -115px;

}

nav ul li a {

position: relative;
height: 27px;
float: left;
z-index: 5;
text-align: left;
padding-left: 11px;
list-style-type: none;
text-decoration: none;
color: #8F181B;
font-weight: normal;
font-size: 16px;
font-family: Verdana, Geneva, sans-serif;
padding-top: 3px;
padding-right: 10px;
padding-bottom: 0px;
background-color: #DBD0CA;

}

nav ul li a:hover, a:active {

position: relative;
height: 27px;
color: #FFF;
background-image: url(images/nav_rollover.png);
z-index: 6;
padding-top: 3px;

}

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

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

发布评论

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

评论(1

爱的故事 2024-11-05 23:08:20

您需要重置 ul 上的填充,因为它是导致元素转到下一行的左侧填充:

nav ul {

  position: relative;
  display: inline;
  list-style-type: none;
  height: 27px;
  z-index: 4;
  padding-top: 3px;
  margin-top: -115px;
  padding: 0;          // added
}

You need to reset the padding on the ul as it is the left padding that is causing the element to go to the next line:

nav ul {

  position: relative;
  display: inline;
  list-style-type: none;
  height: 27px;
  z-index: 4;
  padding-top: 3px;
  margin-top: -115px;
  padding: 0;          // added
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文