Dropdowns
You can have both hoverable dropdowns and clickable dropdowns using Bulma.To make any menu open on hover, you have to add the is-hoverable
class to the toggle element.
<div
class=
"dropdown is-hoverable"
>
<div
class=
"dropdown-trigger"
>
<button
class=
"button"
aria-haspopup=
"true"
aria-controls=
"dropdown-menu"
>
<span>
Hover me</span>
<span
class=
"icon is-small"
>
<i
class=
"fa fa-angle-down"
aria-hidden=
"true"
></i>
</span>
</button>
</div>
<div
class=
"dropdown-menu"
id=
"dropdown-menu"
role=
"menu"
>
<div
class=
"dropdown-content"
>
<div
class=
"dropdown-item"
>
<p>
You can insert<strong>
any type of content</strong>
within the dropdown menu.</p>
</div>
</div>
</div>
...