gpt4 book ai didi

css - 导航子菜单文本颜色

转载 作者:太空宇宙 更新时间:2023-11-04 12:49:51 27 4
gpt4 key购买 nike

在小型设备上,我的导航菜单文本颜色不是很好,您可以在此处看到:

enter image description here

“财务”下方有菜单项。只是颜色不好。我想要白色。

在大型设备上,菜单很好。

enter image description here

实际上,我希望所有菜单都是绿色的,带有白色文本。

在我的 CSS 中,我有这个。如何修复子菜单的文本颜色?

普通菜单似乎没问题。

.navbar-custom {
background: #2B8173;
color: white;
border-radius: 0;
}

.navbar-custom .navbar-nav > li > a {
color: white;
}

.navbar-custom .navbar-nav > .active > a, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus {
color: white;
background-color: transparent;
}

.navbar-custom .navbar-brand {
color: white;
}

最佳答案

jsFiddle

我不知道你的导航栏的结构,因为你没有发布 html,但如果你使用 Bootstrap 3,请尝试:

.navbar-custom {
background: #2B8173;
color: white;
border-radius: 0;
}

.navbar-custom .navbar-nav > li > a {
color: white;
}

.navbar-custom .navbar-nav > .active > a, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus {
color: white;
background-color: transparent;
}

.navbar-custom .navbar-brand {
color: white;
}
@media (max-width: 767px){
.navbar-nav .open .dropdown-menu {
background-color: #2B8173;
}
.navbar-custom .navbar-nav .open .dropdown-menu > li > a {
color: #FFF;
}
}

关于css - 导航子菜单文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26212853/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com