bootstrap remove upward arrow in dropdown

后端 未结 3 1708
礼貌的吻别
礼貌的吻别 2021-02-06 05:54

I am using Twitter bootstap and wish to remove the upward arrow on the dropdown-menu whis is in my nav. I cannot find a reference in the bootstrap.css.

3条回答
  •  -上瘾入骨i
    2021-02-06 06:27

    The following css worked for me:

    .dropdown-menu:before, 
    .dropdown-menu:after {
         border: none !important;
         content: none !important;
    }
    

    If you remove any of the two selectors, some detail from the arrow would still remain - either a gray or a white triangle.

    (Just decided to add this in case someone is looking for an answer later, as the accepted answer didn't work for me.)

提交回复
热议问题