I am working with Bootstrap 4 and attempting to eliminate the dropdown arrow in my design.
Unfortunately, the solutions that were effective for Bootstrap 3 no longer apply. You can read more about this issue here.
To see the problem in action, check out the jsfiddle here.
<div class="dropdown open">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu1">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
</div>
</div>