gpt4 book ai didi

css - 无法将我的下拉菜单项设为白色

转载 作者:太空宇宙 更新时间:2023-11-04 15:35:57 25 4
gpt4 key购买 nike

我无法将下拉项的颜色设为白色,有人知道我该如何解决这个问题吗?

我的普通链接需要是黑色的,不活动的需要是黑色的,事件的需要是白色的,下拉元素需要是白色的。除了最上方的下拉元素外,我已经使用该代码获得了所有内容。

这是我的 CSS:

.menuitems{
line-height: 240%;
text-transform: uppercase;
}
.menuitems ul {
font-family: Arial, Verdana;
font-size: 14px;
margin: 0;
padding: 0;
}
.menuitems ul li {
display: block;
position: relative;
float: left;
}
.menuitems li ul {
display: none;
}
.menuitems ul li a {
height: 40px;
display: block;
text-decoration: none;
color: black;
border-left: 1px #D0D0D0 solid;
padding: 0px 30px 0px 30px;
}


.menuitems li > ul li a
{
color:white;
}
.menuitems ul ul li{
text-transform: none;
border-bottom: 1px #ff5c38 solid;
line-height: 380%;
}
.menuitems ul li:hover{
background: url('images/menu-background1.png') repeat-x 0 0;
}

.menuitems ul li a:hover {
height:40px;
color: white;
padding-left: 30px !important;
padding-right: 30px !important;
}
.menuitems li:hover ul {
display: block;
position: absolute;
}
.menuitems li:hover li {
float: none;
font-size: 13px;
background: #fa3423;
}
.menuitems li:hover a { }
.menuitems li:hover li a:hover {

}
/* What to do on active */
.menuitems ul li.current_page_item {
background: url('images/menu-background1.png') repeat-x 0 0;
}
.menuitems ul li.current_page_item a{
color: white;
}
.menuitems li.current_page_parent a {
color: white;
}
.menuitems li.current_page_parent {
color: white;
background: url('images/menu-background1.png') repeat-x 0 0;
}
.menuitems li:hover ul:hover a:hover{
color: white !important;
}
.menuitems ul li ul{
color: white;
}

我什么都试过了..:(

最佳答案

Castra,我想你是在谈论文字吧?如果您希望文本始终为白色,则需要将 .menuitems ul li a 中的 color: black; 更改为 color: white;

Here's a JSFiddle这表明了这一点。

关于css - 无法将我的下拉菜单项设为白色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12802608/

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