导航下拉文本颜色在 FF 和 IE 中不起作用

发布于 2024-10-15 20:48:10 字数 427 浏览 4 评论 0原文

我能够让导航下拉菜单以与 Chrome 浏览器中的背景(在本例中为白色)不同的颜色显示字母。但是当我在IE或FF中查看同一页面时,整个背景都是绿色的。

以下是此类页面的示例: http://www.comehike.com/hikes/hikes_and_groups.php

这是使颜色在 Chrome 中显示为白色的 CSS 代码

#navigation li li a {
    color: #white;
    text-decoration:none;
}

要查看差异,只需将鼠标悬停在右上角显示“社区”或“徒步旅行”的位置即可,

谢谢, 亚历克斯

I was able to get the navigation dropdown to show the letters in a different color from the background (white in this case) in Chrome browser. But when I view the same page in IE or FF, the whole background is just all green.

Here is an example of such a page:
http://www.comehike.com/hikes/hikes_and_groups.php

And here is the CSS code that makes the color show up white in Chrome

#navigation li li a {
    color: #white;
    text-decoration:none;
}

To see the difference, just mouse over the top right where it says "community" or "hikes"

Thanks,
Alex

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

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

发布评论

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

评论(1

风柔一江水 2024-10-22 20:48:10

从颜色中取出哈希符号:#white。 “white”是一个关键字,散列表示它是十六进制编码的颜色,例如#fff。

#navigation li li a {
  color: white;
}

take out the hash symbol from color: #white. "white" is a keyword, the hash signifies it's a color coded in hexadecimal, such as #fff.

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