导航 li 样式在 Chrome 或 Safari 中无法呈现,在 Firefox 中则正常
我正在开发一个简单的 HTML 网站,但在 Chrome 和 Safari 中导航无法正确呈现时遇到问题,但在 Firefox 中则正常(全部在 Mac 上)。
每个 nav li 应该是具有 15px 填充的块,彼此相邻浮动,悬停时显示浅绿色背景。在 Chrome 和 Safari 中,它们只是以页面默认链接样式显示,没有浮动。
该网站可以在这里看到:http://www.rjlacount.com/clients/GreenTree
谢谢寻求任何帮助!
这是我用于导航菜单的 CSS:
ul#nav {
font-size:16px;
border-top:1px solid #a4a4a4;
border-bottom:1px solid #a4a4a4;
text-align:center;
margin:40px auto;
list-style:none;
}
ul#nav li a:link, ul#nav li a:visited {
float:left;
padding:15px 43px;
text-decoration:none;
font-weight:normal;
color:#000;
}
ul#nav li a:active, ul#nav li a:hover {
background:#e6ffdc;
text-decoration:none;
}
ul#nav li.highlight a:link, ul#nav li.highlight a:visited {
background:#e6ffdc;
}
I'm working on a simple HTML site and having trouble with the navigation not rendering correctly in Chrome and Safari but is fine in Firefox (all on Mac).
The nav li's should each be blocks with 15px of padding, floated left next to each other, showing a light green background on hover. In Chrome and Safari, they're just showing up with the page default link styles with no float.
The site can be seen here: http://www.rjlacount.com/clients/GreenTree
Thanks for any help!
And here's the CSS I'm using for the nav menu:
ul#nav {
font-size:16px;
border-top:1px solid #a4a4a4;
border-bottom:1px solid #a4a4a4;
text-align:center;
margin:40px auto;
list-style:none;
}
ul#nav li a:link, ul#nav li a:visited {
float:left;
padding:15px 43px;
text-decoration:none;
font-weight:normal;
color:#000;
}
ul#nav li a:active, ul#nav li a:hover {
background:#e6ffdc;
text-decoration:none;
}
ul#nav li.highlight a:link, ul#nav li.highlight a:visited {
background:#e6ffdc;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看您的来源,这似乎是您的标记中的问题。
标签应该位于
标签内,这似乎在 firefox 上自动完成,但在 webkit 中则不然。
在您提供的 CSS 中,您还在列表项中搜索任何锚点,因此无论如何它都无法找到它,因为您的方式是错误的。
Looking at your source, it seems to be a problem in your markup. The
<a>
tags should be inside the<li>
tags, this seems to be automatically done on firefox, but not in webkit.In your CSS that you have provided, you are also searching for any anchors within a list item, so it wouldn't be able to find it anyway, as you have them the wrong way around.