How to remove the arrow in dropdown in Bootstrap 4?

后端 未结 13 1366
谎友^
谎友^ 2020-12-23 15:47

I am using Bootstrap 4. I tried to remove the arrow in dropdown.

The answers I found for Bootstrap 3 do not work any more.

The jsfiddle is here.



        
13条回答
  •  情深已故
    2020-12-23 16:15

    If you remove fit the dropdown-toggle class as below, all the dropdown buttons on your system will no longer have the caret.

    .dropdown-toggle::after {
        display:none;
    }
    

    But maybe that's not what you want, so to remove just the specific button, we're going to insert a class called: remoecaret, and we'll fit the class: dropdown-toggle as follows:

    .removecaret.dropdown-toggle::after {
        display: none;
    }
    

    and our html looks something like:

    
    

提交回复
热议问题