为什么在CSS中使用:hover时,此导航栏悬停不起作用?

时间:2018-10-03 08:04:38

标签: css

为什么当我尝试为http://ntsu.unioncloudsandpit.org上的特定导航栏部分的背景着色时,它不能通过CSS起作用吗?

我尝试过:

#green-menu-wrapper:hover {
background:#95C11F;
}

Along with different selectors

#top-nav-level-one-green:hover
.top-nav-level-one-your-say:hover

1 个答案:

答案 0 :(得分:0)

我查看了您的页面,我认为您缺少分号并尝试添加“ -color”

< !--Your Say-- > #green-menu-wrapper:hover {
    background: #95c11f !important
}

尝试使用:

#green-menu-wrapper:hover {
    background-color: #95c11f;
}