Answers for "how to change bootstrap dropdown icon"

CSS
3

remove arrow dropdown bootstrap

Simply remove "dropdown-toggle" class from the element. The dropdown will still work if you have the data-toggle attribute as follows

<button role="button" type="button" class="btn" data-toggle="dropdown"> 
    Dropdown Without Arrow
</button>
Posted by: Guest on November-02-2021
2

select dropdown icon change

-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: transparent url(http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat 100% center;
Posted by: Guest on August-13-2021

Code answers related to "how to change bootstrap dropdown icon"

Browse Popular Code Answers by Language