Dropdowns

Dropdowns are toggleable, contextual overlays for displaying lists of links and more. They're toggled by clicking, not by hovering.

Encapsulate the dropdown button in <div> </div> element with class drowdown. Add class dropdown-toggle and attribute data-toggle="dropdown" to the <button> </button> element. Enclose links in another <div> </div> element with class dropdown-menu. Create links using <a> element with class dropdown-item.

By default the dropdown button is collapse (closed). If you would like the dropdown to be expanded by default then add the class open to the overarching <div> </div> element in which we specified class drowdown.

In the example below: