我将我的 Angular-6 项目用于ng-bootstrap并且我使用了 ngbootstrap-pills,我尝试将活动药丸添加到带有删除按钮选项的下拉图标中,但它不起作用,任何人都知道如何正确地做到这一点。
这里有堆栈闪电战代码
这是我的 .css 代码
.nav-pills .nav-link.active, .nav-pills.show> .nav-link {
color: #fff;
background-color: #262262;
}
a:after {
content: url('https://image.flaticon.com/icons/svg/60/60995.svg');
height: 0;
width: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
position: absolute;
bottom: -1px;
left: 50%;
margin: 0 0 0 -3px;
z-index: 100;
}
我试着像这张图片一样
谢谢。