Is there a simple method to create a text-only dropdown link in Bootstrap 4 without using a button?
Or do I have to adjust the padding and buttons using CSS to make the "Delivery" dropdown blend in with the rest of the text?
I've searched online and on Codepen, but all I could find were examples of button dropdown menus.
https://i.sstatic.net/xB2GJ.jpg
<div class="dropdown">
<button
class="btn btn-light dropdown-toggle"
type="button"
id="dropdownMenuButton"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false"
>
Delivery
</button>
<div
class="dropdown-menu"
aria-labelledby="dropdownMenuButton"
>
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>