gpt4 book ai didi

css - 在下拉子菜单上设置 "active"

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

我一直在尝试在子菜单上设置“事件”,以便您知道您在哪个页面上。它确实在导航选项卡上设置为“事件”,但我对子菜单没有任何运气。

这不是我写的(超出了我的能力范围)。这是horizontal drop down menu由马修泰勒。我尝试了无数次编辑和添加,但都无济于事。非常感激任何的帮助。

CSS

/* Main menu settings */
#centeredmenu {
clear:both;
float:left;
margin:0;
padding:0;
border-bottom:1px solid #000; /* black line below menu */
width:100%;
font-family:Verdana, Geneva, sans-serif; /* Menu font */
font-size:90%; /* Menu text size */
z-index:1000;
position:relative;
}

/* Top menu items */
#centeredmenu ul {
margin:0;
padding:0;
list-style:none;
float:right;
position:relative;
right:50%;
}

#centeredmenu ul li {
margin:0 0 0 1px;
padding:0;
float:left;
position:relative;
left:50%;
top:1px;
}

#centeredmenu ul li a {
display:block;
margin:0;
padding:.6em .5em .4em;
font-size:1em;
line-height:1em;
background:#ddd;
text-decoration:none;
color:#444;
font-weight:bold;
border-bottom:1px solid #000;
}

#centeredmenu ul li.active a {
color:#fff;
background:#000;
}



#centeredmenu ul li a:hover {
background:#36f; /* Top menu items background colour */
color:#fff;
border-bottom:1px solid #03f;
}


#centeredmenu ul li:hover a,

#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
background:#36f; /* Top menu items background colour */
color:#fff;
border-bottom:1px solid #03f;
}


/* Submenu items */
#centeredmenu ul ul {
display:none; /* Sub menus are hidden by default */
position:absolute;
top:2em;
left:0;
float:left;
right:auto; /*resets the right:50% on the parent ul */
width:10em; /* width of the drop-down menus */
}


#centeredmenu ul ul li {
left:auto; /*resets the left:50% on the parent li */
margin:0; /* Reset the 1px margin from the top menu */
clear:left;
float:left;
width:100%;
}


#centeredmenu ul ul li a,

#centeredmenu ul li.active li a,

#centeredmenu ul li:hover ul li a,

#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
font-size:.8em;
font-weight:normal; /* resets the bold set for the top level menu items */
background:#eee;
color:#444;
line-height:1.4em; /* overwrite line-height value from top menu */
border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
float:left;
width:100%;
}


#centeredmenu ul ul li a:hover,

#centeredmenu ul li.active ul li a:hover,

#centeredmenu ul li:hover ul li a:hover,

#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
background:#36f; /* Sub menu items background colour */
color:#fff;
float:left;
}



/* Flip the last submenu */

#centeredmenu ul ul.last {
left:auto; /* reset left:0; value */
right:0; /* Set right value instead */
}


#centeredmenu ul ul.last li {
float:right;
position:relative;
right:.8em;
}

/* Make the sub menus appear on hover */

#centeredmenu ul li:hover ul,

#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
display:block; /* Show the sub menus */
}

html

<div id="centeredmenu">
<ul>
<li class="active"><a href="#" class="active">menu</a>
<ul>
<li><a href="#">sub_menu1</a></li>
<li class="active"><a href="#" class="active">sub_menu2</a></li>
<li><a href="#">sub_menu3</a></li>
</ul>
</li>


<li><a href="#">menu2</a>
<ul class="last">
<li><a href="#">sub_menu1</a></li>
<li><a href="#">sub_menu2</a></li>
<li><a href="#">sub_menu3</a></li>
</ul>
</li>

</ul>
</div>

最佳答案

你声明了这个样式:

#centeredmenu ul li.active a {
color:#fff;
background:#000;
}

任何 a 嵌套在 #centeredmenu ul li.active 包括 嵌套的下面将采用该样式。

除非您使用更具体的选择器覆盖它。你有更进一步的:

#centeredmenu ul li.active li a {
background:#eee;
color:#444;
}

因此,您需要一个特定的选择器来处理事件的子菜单a:

#centeredmenu ul li.active li.active a {
/* your sub-menu active styles go here */
}

仅供引用,当您的选择器链变得如此长且具体时,我通常建议是时候对它进行核对并重写它了。它通常是一个 CSS 文件在其使用生命周期之外得到维护和修改的标志。现在修改某些东西比重写要花更多的时间。 :)

关于css - 在下拉子菜单上设置 "active",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21325666/

25 4 0