选择器的优先级问题,可以参考以下链接的文章
MDN优先级
.dropdown-menu > li > a:hover {
background: green;
}
// a以前的样式,要覆盖此样式,在上边加hover
.dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857;
color: #333;
white-space: nowrap;
}