NgbDropdown: remove dropdown arrow
Solution Simply add the following CSS style to override the default style of the .dropdown-toggle::after pseudo-element: .dropdown-toggle::after { display:none; } Why? By default bootstrap adds the arrow to the dropdown component via the ::after pseudo-element. Doing this removes it. Here is a LIVE DEMO demonstrating it. How do you work it out? Using chrome dev … Read more