How can I remove the arrow from drop down list in

2020-05-23 09:21发布

I am trying to remove the arrow that appears on a drop down menu in Twitter Bootstrap framework. Has anyone figured a way of removing the arrows?

9条回答
家丑人穷心不美
2楼-- · 2020-05-23 09:48
.dropdown-toggle::after{
    display: none;
}
查看更多
叛逆
3楼-- · 2020-05-23 09:49

Just remove border-bottom from dropdown-menu will remove arrow from the navigation bar.

.navbar .nav > li > .dropdown-menu:before, .navbar .nav > li > .dropdown-menu:after{
    border-bottom: none;
}
查看更多
在下西门庆
4楼-- · 2020-05-23 09:49

In Bootstrap4 remove "dropdown-toggle" class from "a" element.

查看更多
登录 后发表回答