我在用
.navbar-default {
z-index:99;
opacity:0.8;
}
我想将下拉菜单项设置为0.9不透明度。
尝试了很多方法,但都没有成功。例如:
.dropdown-menu>li>a {
opacity:0.9 !important;
}
.navbar-default .navbar-nav .open .dropdown-menu>li>a {
opacity:0.9 !important;
}
.open {
background: #fff !important;
opacity:0.9 !important;
}
更清楚的是,除了打开的下拉菜单外,菜单中的所有内容的不透明度都是0.8,所以我需要一种方法来覆盖第一条规则(设置0.8不透明度的规则)
1条答案
按热度按时间rhfm7lfc1#
使用
rgba
代替,如果它没有工作,请留下评论检查demo here