我在Chrome中列表中的链接上遇到了奇怪的悬停行为。 我已经设法在这个jsFiddle中复制了这个问题,从网站上复制整个html和css。
问题出在侧边菜单的第一个元素上,其中包含“Maria Montessori”的链接。发生的事情是悬停区域就像文本所在的中间被打断一样。这就像按钮的中间部分有一些东西。亲自尝试一下,明白我的意思。
相关代码是:
<ul class="page-menu">
<li class="page_item page-item-30"><a href="http://...">Maria Montessori</a></li>
<li class="page_item page-item-32"><a href="http://...">La pedagogia scientifica</a></li>
...
和css:
.page-menu {
display: inline-block;
margin-right: 25px;
text-align: center;
width: 210px;
li {
margin-bottom: 10px;
}
li.current_page_item {
a {
background-color: $blue-montessori;
border-bottom: 2px solid $blue-montessori;
color: white;
font-weight: bold;
}
}
li.current_page_parent {
a {
background-color: $blue-montessori;
border-bottom: 2px solid $blue-montessori;
color: white;
font-weight: bold;
}
}
a {
background-color: $grey-light;
border-bottom: 2px solid $grey-light;
color: $grey-dark;
display: block;
font-family: Lato;
font-weight: 300;
line-height: 1.2;
padding: 15px 20px;
text-decoration: none;
text-transform: uppercase;
&:hover {
background-color: $blue-light;
border-bottom: 2px solid $blue-dark;
color: white;
font-weight: 400;
}
}
ul.children {
margin-top: 10px;
li {
margin-bottom: 10px;
margin-left: 10px;
}
li a {
background-color: #f9f9f9;
border-bottom: 2px solid #f9f9f9;
color: $grey-dark;
display: block;
font-family: Lato;
font-size: 12px;
font-weight: 400;
line-height: 1.2;
padding: 10px 20px;
text-decoration: none;
text-transform: uppercase;
&:hover {
background-color: $blue-light;
border-bottom: 2px solid $blue-dark;
color: white;
font-weight: 400;
}
}
li.current_page_item {
a {
background-color: $blue-montessori;
border-bottom: 2px solid $blue-montessori;
color: white;
font-weight: bold;
}
}
}
.page_item_has_children > .children {display: none;} /*hides the submenu*/
.page_item_has_children.current_page_item > .children,
.page_item_has_children.current_page_ancestor > .children {display: block;} /*shows the submenu for the current page or when on its subpages */
}
使用开发人员工具检查它并没有真正帮助,而奇怪的是,问题似乎只出现在第一个元素上。无论如何,在Firefox中运行良好。
答案 0 :(得分:1)
你的div菜单菜单1容器与你的第一个菜单重叠,因为div .nav-menu的行高属性改为使用填充
.nav-menu {
padding: 17px; /* remove line-height property */
}