导航下拉文本颜色在 FF 和 IE 中不起作用
我能够让导航下拉菜单以与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从颜色中取出哈希符号:#white。 “white”是一个关键字,散列表示它是十六进制编码的颜色,例如#fff。
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.