为什么当我尝试为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
答案 0 :(得分:0)
我查看了您的页面,我认为您缺少分号并尝试添加“ -color”
< !--Your Say-- > #green-menu-wrapper:hover {
background: #95c11f !important
}
尝试使用:
#green-menu-wrapper:hover {
background-color: #95c11f;
}