How to change the bootstrap caret pointing direction on click event

后端 未结 4 1306
慢半拍i
慢半拍i 2021-02-09 15:32

I\'m using 2.3.2 bootstrap

As I can change the position of the caret icon when I click the menu button.

I need that when I click the icon caret pointing up and

4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-09 16:14

    Updated Fiddle

    Added the following CSS

    .navbar .nav li.dropdown.open>.dropdown-toggle .caret {
        border-top-color: transparent;
        border-bottom: 4px solid #000000;
        position: relative;
        top: -3px;
    }
    

提交回复
热议问题